-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
37 lines (37 loc) · 1.08 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "rvdv/nntp",
"description": "Client for communicating with servers throught the Network News Transfer Protocol (NNTP) protocol.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Robin van der Vleuten",
"email": "[email protected]"
}
],
"homepage" : "https://github.com/robinvdvleuten/php-nntp",
"require": {
"php": "^5.5|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"friendsofphp/php-cs-fixer": "2.0.0-alpha",
"scrutinizer/ocular": "^1.1",
"sllh/php-cs-fixer-styleci-bridge": "^2.1"
},
"autoload": {
"psr-4": {"Rvdv\\Nntp\\": "src"}
},
"autoload-dev": {
"psr-4": {"Rvdv\\Nntp\\Tests\\": "tests"}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text; vendor/bin/php-cs-fixer fix -v --diff --dry-run;",
"test:travis": "vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}