-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.21 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": "burntromi/exception-generator",
"license": "MIT",
"description": "Tool for creating standard exceptions",
"type": "application",
"autoload": {
"psr-4": {
"Burntromi\\ExceptionGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Burntromi\\ExceptionGenerator\\IntegrationTest\\": "tests/features/bootstrap",
"Burntromi\\ExceptionGenerator\\IntegrationTest\\Initializer\\": "tests/features/initializer",
"Burntromi\\ExceptionGenerator\\TestHelper\\": "tests/helper"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0",
"symfony/console": "^2.5",
"symfony/event-dispatcher": "^2.5 || ^3.0",
"zendframework/zend-escaper": "^2.2",
"zendframework/zend-filter": "^2.2",
"zendframework/zend-servicemanager": "^3.0 || ^2.2",
"zendframework/zend-view": "^2.2"
},
"require-dev": {
"behat/behat": "^3.2.2",
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^5.6.5"
},
"bin": ["bin/exception-generator"]
}