-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
86 lines (86 loc) · 2.29 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
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"doctrine/annotations": "^2.0.1",
"doctrine/collections": "^2.1.2",
"doctrine/dbal": "^3.6.2",
"doctrine/migrations": "^3.6",
"eventsauce/message-repository-for-doctrine": "*",
"league/tactician": "^1.0",
"symfony/config": "^6.2",
"symfony/console": "^6.2",
"symfony/dotenv": "6.3.x-dev",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^6.2",
"symfony/stopwatch": "^6.2",
"symfony/string": "^6.2",
"symfony/translation": "6.2.*",
"symfony/twig-bundle": "^6.2",
"symfony/yaml": "^6.2",
"twig/intl-extra": "^3.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^6.2",
"symfony/css-selector": "^6.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"Cafe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cafe\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"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.*"
}
}
}