-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 975 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
37
{
"name": "symfony-bundles/json-request-bundle",
"type": "symfony-bundle",
"description": "Symfony JsonRequest Bundle",
"keywords": ["json", "symfony", "bundle", "angular"],
"homepage": "https://github.com/symfony-bundles/json-request-bundle",
"license": "MIT",
"authors": [
{
"name": "Dmitry Khaperets",
"email": "khaperets@gmail.com"
}
],
"autoload": {
"psr-4": {
"SymfonyBundles\\JsonRequestBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": ">=7.3",
"symfony/framework-bundle": "^4.3||^5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phpunit/php-code-coverage": "^5.0",
"symfony/phpunit-bridge": "^4.3||^5.0",
"symfony/yaml": "^4.3||^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}