forked from InstacarMX/ExtraFiltersBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.68 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
50
51
52
53
{
"name": "instacar/extra-filters-bundle",
"description": "A Symfony bundle for Api Platform with a composable and adaptative filter",
"type": "symfony-bundle",
"license": "LGPL-3.0-only",
"authors": [
{"name": "Brandon Antonio Lorenzo", "email": "bantonio@gtglobal.com"}
],
"require": {
"php": ">=7.4",
"api-platform/core": "^2.6",
"symfony/config": "^5.4|^6.1",
"symfony/dependency-injection": "^5.4|^6.1",
"symfony/expression-language": "^5.4|^6.1",
"symfony/flex": "^1.19|^2.2"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.7",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"doctrine/orm": "^2.12",
"liip/test-fixtures-bundle": "^2.0.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symfony/browser-kit": "^5.4|^6.1",
"symfony/framework-bundle": "^5.4|^6.1",
"symfony/http-client": "^5.4|^6.1",
"symfony/phpunit-bridge": "^5.4|^6.1",
"symfony/runtime": "^5.4|^6.1"
},
"autoload": {
"psr-4": {
"Instacar\\ExtraFiltersBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Instacar\\ExtraFiltersBundle\\Test\\": "tests",
"Instacar\\ExtraFiltersBundle\\App\\": "app/src"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}