forked from sumocoders/Framework-User-Implementation-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.85 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.85 KB
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
{
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"beberlei/doctrineextensions": "^1.3",
"doctrine/doctrine-migrations-bundle": "^3.2",
"sumocoders/framework-core-bundle": "^6.0",
"symfony/apache-pack": "^1.0.1",
"symfony/debug-bundle": "^6.1",
"symfony/dotenv": "^6.1",
"symfony/flex": "^2",
"symfony/mailer": "^6.1",
"symfony/mailgun-mailer": "^6.1",
"symfony/messenger": "^6.1",
"symfony/monolog-bundle": "^3.5",
"symfony/security-bundle": "^6.1",
"symfony/validator": "^6.1",
"symfony/web-profiler-bundle": "^6.1",
"symfony/webpack-encore-bundle": "^1.6.2",
"symfony/website-skeleton": "^6.1",
"symfony/yaml": "^6.1",
"tijsverkoyen/convert-to-junit-xml": "^1.7",
"willdurand/js-translation-bundle": "^5.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"friendsoftwig/twigcs": "^6.0",
"phpstan/phpstan-symfony": "^1.0",
"squizlabs/php_codesniffer": "^3.4",
"symfony/phpunit-bridge": "^6.1",
"symfony/stopwatch": "^6.1",
"tijsverkoyen/deployer-sumo": "^2"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}