-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
35 lines (35 loc) · 1.13 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
{
"name": "spiriitlabs/form-filter-bundle",
"type": "symfony-bundle",
"description": "This bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.",
"keywords": ["Symfony", "bundle", "form", "filter", "doctrine"],
"homepage": "https://github.com/SpiriitLabs/form-filter-bundle",
"license": "MIT",
"prefer-stable": true,
"require": {
"php": "^8.1",
"doctrine/orm": "^3.0",
"doctrine/dbal": "^3.0",
"symfony/form": "^5.4|^6.4|^7.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"rector/rector": "^0.17.1",
"symfony/phpunit-bridge": "^5.4|^6.4|^7.0",
"symfony/var-dumper": "^5.4|^6.4|^7.0",
"symplify/easy-coding-standard": "^11.3"
},
"autoload": {
"psr-4": { "Spiriit\\Bundle\\FormFilterBundle\\": "" }
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"vendor/bin/simple-phpunit"
]
}
}