forked from e-commit/EcommitCrudBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.61 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
65
66
67
68
69
70
71
72
73
74
{
"name": "ecommit/crud-bundle",
"description": "EcommitCrudBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"doctrine/collections": "^1.5|^2.0",
"doctrine/dbal": "^2.13.1|^3.2",
"doctrine/doctrine-bundle": "^2.4.5",
"doctrine/orm": "^2.9",
"doctrine/persistence": "^1.3|^2.0|^3.0",
"ecommit/doctrine-utils": "^1.0",
"ecommit/paginator": "^1.0",
"ecommit/scalar-values": "^1.0",
"psr/container": "^1.1|^2.0",
"symfony/asset": "^5.4|^6.0|^7.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/doctrine-bridge": "^5.4.3|^6.0.3|^7.0",
"symfony/form": "^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/http-client": "^5.4|^6.0|^7.0",
"symfony/http-client-contracts": "^2.4|^3.0",
"symfony/http-foundation": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"symfony/intl": "^5.4|^6.0|^7.0",
"symfony/options-resolver": "^5.4|^6.0|^7.0",
"symfony/property-access": "^5.4|^6.0|^7.0",
"symfony/routing": "^5.4|^6.0|^7.0",
"symfony/security-bundle": "^5.4|^6.0|^7.0",
"symfony/security-core": "^5.4|^6.0|^7.0",
"symfony/security-csrf": "^5.4|^6.0|^7.0",
"symfony/service-contracts": "^1.1.6|^2|^3",
"symfony/translation": "^5.4|^6.0|^7.0",
"symfony/translation-contracts": "^2.3|^3.0",
"symfony/twig-bridge": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
"symfony/validator": "^5.4|^6.0|^7.0",
"twig/twig": "^2.12.0|^3.0"
},
"require-dev": {
"dbrekelmans/bdi": "^1.0",
"dg/bypass-finals": "^1.3",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.0",
"symfony/dom-crawler": "^5.4|^6.0|^7.0",
"symfony/panther": "^2.0.1",
"symfony/webpack-encore-bundle": "^1.7.3|^2.1.1",
"symfony/yaml": "^5.4|^6.0|^7.0",
"vimeo/psalm": "^4.22"
},
"autoload": {
"psr-4": { "Ecommit\\CrudBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\CrudBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}