-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.26 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
{
"name": "jrobertfox/dtox",
"description": "Creates really fresh DTOs",
"homepage": "http://jrobertfox.github.com/DTOx",
"version": "v1.1.0",
"authors": [{
"name": "Jason Fox",
"email": "[email protected]",
"homepage": "http://jasonrobertfox.com",
"role": "developer"
}],
"license": "MIT",
"keywords": [
"dto",
"generator"
],
"support": {
"issues": "https://github.com/jrobertfox/DTOx/issues",
"source": "https://github.com/jrobertfox/DTOx"
},
"autoload": {
"psr-0": {
"DTOx": "src/"
}
},
"require": {
"symfony/console": ">=v2.1.3",
"silex/silex": "1.0.*@dev",
"twig/twig": ">=1.8,<2.0-dev"
},
"require-dev": {
"mockery/mockery": ">=0.7.2",
"phpunit/phpunit": "*",
"fabpot/php-cs-fixer": "dev-master",
"squizlabs/php_codesniffer": "dev-master",
"behat/behat": "2.4.*@stable",
"behat/mink": "1.4@stable",
"behat/mink-goutte-driver": "*",
"behat/mink-extension": "*",
"behat/mink-selenium2-driver": "*"
},
"config": {
"vendor-dir": "vendor/",
"bin-dir": "bin/"
},
"bin": [
"scripts/dtox"
]
}