-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
92 lines (92 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "afup/barometre",
"description": "Baromètre des salaires du PHP",
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"agallou/departements": "^0.1.0",
"agallou/grunt-hash-assets-bundle": "^1.0.0",
"agallou/regions": "^0.2.0",
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.11",
"knplabs/knp-menu-bundle": "^3.2",
"symfony/apache-pack": "^1.0",
"symfony/asset": "^6.2",
"symfony/console": "^6.2",
"symfony/dotenv": "^6.2",
"symfony/flex": "^1.17|^2",
"symfony/form": "^6.2",
"symfony/framework-bundle": "^6.2",
"symfony/proxy-manager-bridge": "^6.2",
"symfony/runtime": "^6.2",
"symfony/security-csrf": "^6.2",
"symfony/translation": "^6.2",
"symfony/twig-bundle": "^6.2",
"symfony/yaml": "^6.2",
"twig/extra-bundle": "^3.5",
"twig/twig": "^3.5"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"preferred-install": {
"*": "dist"
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.2.*"
}
},
"require-dev": {
"atoum/atoum": "^4.0",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"nelmio/alice": "^3.10",
"symfony/maker-bundle": "^1.36",
"symfony/stopwatch": "^6.2",
"symfony/web-profiler-bundle": "^6.2"
}
}