-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (79 loc) · 3.38 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": "splash/toolkit",
"license": "MIT",
"type": "project",
"description": "Developer Toolkit for All Splash Modules, Bundles & Connectors Developments",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"ext-xml": "*",
"ext-soap": "*",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/http-kernel": "~5.4",
"symfony/dependency-injection": "~5.4",
"symfony/framework-bundle": "~5.4",
"symfony/browser-kit": "~5.4",
"symfony/dotenv": "~5.4",
"symfony/mailer": "~5.4|^6.0",
"symfony/routing": "~5.4",
"symfony/runtime": "~5.4",
"symfony/web-profiler-bundle": "^5.4",
"symfony/debug-pack": "^1.0",
"symfony/twig-bundle": "*",
"symfony/yaml": "*",
"sonata-project/user-bundle": ">=4.0",
"doctrine/annotations": "^2.0",
"burgov/key-value-form-bundle": "@stable",
"splash/php-bundle": "dev-master",
"splash/console": "dev-master",
"splash/openapi": "dev-master",
"splash/metadata": "dev-master",
"splash/oauth2": "dev-main",
"splash/sonata-admin": "dev-master",
"splash/faker": "dev-master",
"splash/soap": "dev-master",
"splash/flat": "dev-master",
"phpunit/phpunit": "~8.0|~9.0"
},
"require-dev": {
"badpixxel/php-sdk": "^2.0"
},
"config": {
"minimum-stability" : "dev",
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpro/grumphp": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"Splash\\Toolkit\\": "src/",
"Splash\\Connectors\\": "connectors/"
}
},
"autoload-dev": {
"psr-4": {
"Splash\\Toolkit\\Tests\\": "tests/"
}
},
"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"
]
}
}