-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
{
"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": "[email protected]"}
],
"require": {
"php": ">=8.1",
"api-platform/core": "^3.0|^2.7",
"symfony/config": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/expression-language": "^6.1"
},
"require-dev": {
"composer/semver": "^3.3",
"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": "^6.1",
"symfony/flex": "^2.2",
"symfony/framework-bundle": "^6.1",
"symfony/http-client": "^6.1",
"symfony/phpunit-bridge": "^6.1",
"symfony/runtime": "^6.1",
"symfony/security-bundle": "^6.1",
"symfony/twig-bundle": "^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,
"allow-plugins": {
"symfony/runtime": true,
"symfony/flex": true
}
},
"scripts": {
"lint": "vendor/bin/phpcs",
"analyze": "vendor/bin/phpstan analyze",
"test": "bin/phpunit"
},
"extra": {
"symfony": {
"docker": false
}
}
}