-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (36 loc) · 1.18 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
{
"name": "addiks/symfony_generics",
"license": "MIT",
"type": "library",
"description": "A collection of generic configurable PHP components",
"autoload": {
"psr-4": {
"Addiks\\SymfonyGenerics\\Tests\\Unit\\": "tests/unit/",
"Addiks\\SymfonyGenerics\\": "php/"
}
},
"require": {
"php": ">=8.1",
"symfony/serializer": "^4.4 || ^5.3 || ^6.2",
"symfony/http-foundation": "^v4.4 || ^5.3 || ^6.2",
"symfony/property-access": "^4.4 || ^5.3 || ^6.2",
"symfony/security-bundle": "^4.4 || ^5.3 || ^6.2",
"symfony/framework-bundle": "^4.4 || ^5.3 || ^6.2",
"symfony/form": "^4.4 || ^5.3 || ^6.2",
"doctrine/orm": "^2.6 || ^2.7 || ^2.8 || ^2.9 || ^2.14",
"twig/twig": "^2.13 || ^2.14 || ^3.0 || ^3.1 || ^3.2 || ^3.3 || ^3.5",
"webmozart/assert": "^1.3",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"infection/infection": "*",
"vimeo/psalm": "*",
"phpstan/phpstan": "*"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}