-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1 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
{
"name": "webfactory/visibility-filter-bundle",
"description": "Symfony Bundle that filters out invisible Doctrine entities in a centralised way",
"license": "MIT",
"autoload": {
"psr-4": {
"Webfactory\\VisibilityFilterBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webfactory\\VisibilityFilterBundle\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2|^8.1",
"doctrine/annotations": "^1.12",
"doctrine/doctrine-bundle": "^1.12.13|^2.0",
"doctrine/orm": "^2.7.2",
"symfony/config": "^5.4|^6.4",
"symfony/dependency-injection": "^5.4|^6.4",
"symfony/event-dispatcher": "^5.4|^6.4",
"symfony/http-kernel": "^5.4|^6.4"
},
"config": {
"sort-packages": true
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.5",
"phpunit/phpunit": "^8.5",
"symfony/framework-bundle": "^5.4|^6.4",
"symfony/yaml": "^5.4|^6.4"
}
}