-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
94 lines (83 loc) · 3.16 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
93
94
{
"name": "splash/php-bundle",
"description": "Splash Core Bundle for Symfony Applications",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name":"Splash Sync",
"email":"[email protected]"
},
{
"name": "Bernard Paquier",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Splash\\Bundle\\": "src/",
"Splash\\Local\\": "src/Local/",
"Splash\\Tests\\": "phpunit/"
},
"files": [
"phpunit/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": { "Splash\\Bundle\\Tests\\": "tests" }
},
"require": {
"php": "^7.4|^8.0",
"splash/phpcore": "^2.0",
"webmozart/assert": "^1.0",
"psr/simple-cache": "^1.0 || ^2.0"
},
"require-dev": {
"badpixxel/php-sdk": "~2.0",
"splash/faker": "dev-master",
"splash/console": "dev-master",
"symfony/http-kernel": "^4.4|^5.4|^6.4",
"symfony/security-core": "^4.4|^5.4|^6.4",
"symfony/security-bundle": "^4.4|^5.4|^6.4",
"symfony/twig-bundle": "^4.4|^5.4|^6.4",
"symfony/translation": "^4.4|^5.4|^6.4",
"symfony/routing": "^4.4|^5.4|^6.4",
"symfony/form": "^4.4|^5.4|^6.4",
"symfony/browser-kit": "^4.4|^5.4|^6.4",
"symfony/runtime": "^5.4|^6.4",
"symfony/monolog-bundle": "*",
"symfony/phpunit-bridge": "*",
"doctrine/orm": "^2.4",
"doctrine/annotations": "^1.0|^2.0",
"doctrine/doctrine-bundle": "^1.9|^2.0",
"monolog/monolog": "^1.0|^2.0"
},
"archive": {
"exclude": ["/app", "/bin", "/ci", "/docs", "/tests"]
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"symfony/runtime": true
}
},
"extra": {
"public-dir": "tests/public"
},
"scripts": {
"auto-scripts": [
"php bin/console cache:clear",
"php bin/console assets:install --relative",
"php bin/console doctrine:schema:update --force --complete --no-interaction --no-debug",
"find var/cache/dev/*.xml | while read -r i; do cp \"$i\" var/cache/dev/testContainer.xml; done"
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}