-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
40 lines (40 loc) · 1.16 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
{
"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": "[email protected]"}],
"autoload": {
"psr-4": {
"SymfonyBundles\\JsonRequestBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SymfonyBundles\\JsonRequestBundle\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4 || >=8.0 || >=8.1",
"ext-json": "*",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.2 || ^6.0 || ^7.0",
"symfony/yaml": "^5.2 || ^6.0 || ^7.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}