-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 977 Bytes
/
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
{
"name": "bestservedcold/phalueobjects",
"description": "Phalue Objects - PHP Value Objects",
"keywords": ["value objects", "immutable", "PhalueObjects", "Best Served Cold"],
"homepage": "http://bestservedcold.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Adam Lewis",
"email": "adam.lewis@bestservedcold.com",
"homepage": "http://adamlewis.gb.com"
}
],
"require": {
"php": ">=5.6",
"symfony/yaml": "2.*",
"symfony/finder": "2.*",
"sabre/xml": "^1.5",
"doctrine/inflector": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"best-served-cold/reflection": "^1.0",
"mockery/mockery": "^0.9.4",
"phpdocumentor/phpdocumentor": "^2.8",
"squizlabs/php_codesniffer": "2.*",
"phpmd/phpmd" : "@stable"
},
"autoload": {
"psr-4": {"BestServedCold\\PhalueObjects\\": "src"}
},
"autoload-dev": {
"psr-4": {"BestServedCold\\PhalueObjects\\": "tests"}
}
}