-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name" : "ecailles/null-object",
"description" : "Null Object",
"type" : "library",
"keywords" : [
"null",
"object"
],
"homepage" : "https://github.com/ecailles/null-object",
"license" : "MIT",
"authors" : [
{
"name" : "Whizark",
"email" : "contact@whizark.com",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "contact@whizark.com",
"issues": "https://github.com/ecailles/null-object/issues",
"wiki" : "https://github.com/ecailles/null-object/wiki",
"source": "https://github.com/ecailles/null-object"
},
"require" : {
"php": ">=5.5.0"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^2.6.1",
"phpunit/phpunit" : "^4.8 || ^5.4",
"mockery/mockery" : "^0.9.5",
"satooshi/php-coveralls" : "^1.0.1",
"apigen/apigen" : "^4.1.2"
},
"autoload" : {
"psr-4": {
"Ecailles\\NullObject\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Tests\\Ecailles\\NullObject\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable" : true,
"scripts" : {
"test" : [
"phpcs --colors",
"phpunit --colors=always"
],
"docs" : [
"apigen generate -d api/"
],
"test-ci": [
"phpcs --colors",
"phpunit --colors=always --verbose --coverage-clover build/logs/clover.xml"
]
},
"archive" : {
"exclude": [
".gitattributes",
".gitignore",
".editorconfig",
"package.json",
"composer.json",
".remarkignore",
".remarkrc",
"phpcs.xml.dist",
"phpunit.xml.dist",
".coveralls.yml",
"tests/",
"apigen.neon",
".travis.yml"
]
},
"extra" : {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}