-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 881 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 881 Bytes
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
{
"name": "internations/exception-bundle",
"description": "Helps making your Symfony Bundle a good Exception citizen. Yes, it’s opinionated.",
"license": "MIT",
"require": {
"symfony/finder": "~3|^4.0",
"symfony/console": "^3.0|^4.0",
"nikic/php-parser": "~2|~3|~4",
"lstrojny/functional-php": "~0|~1",
"php": ">=7.1"
},
"authors": [
{
"name": "Lars Strojny",
"email": "lars.strojny@internations.org"
},
{
"name": "Max Beutel",
"email": "max.beutel@internations.org"
}
],
"autoload": {
"psr-0": {"InterNations\\Bundle\\ExceptionBundle": "src/"}
},
"require-dev": {
"internations/kodierungsregelwerksammlung": "~0",
"internations/testing-component": "~1",
"phpunit/phpunit": "~6"
}
}