-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·89 lines (72 loc) · 2.88 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
{
"name": "splash/widgets-bundle",
"description": "Easy Widgets & Information boxes for Symfony Applications",
"type": "symfony-bundle",
"keywords": ["Symfony", "Bundle", "Widget", "PHP", "Simple", "Bootstrap"],
"homepage": "http://www.splashsync.com",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name":"Splash Sync",
"email":"[email protected]"
},
{
"name": "Bernard Paquier",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Splash\\Widgets\\": "src" }
},
"autoload-dev": {
"psr-4": { "Splash\\Widgets\\Tests\\": "tests" },
"classmap": [ "app/AppKernel.php" ]
},
"require": {
"php": "~7.2",
"ext-json": "*",
"symfony/monolog-bundle": "^2.0|^3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"knplabs/knp-time-bundle": "~1.6",
"knplabs/knp-menu-bundle": "~2.0",
"sonata-project/block-bundle": "~3.0",
"symfony/webpack-encore-bundle": "^1.7"
},
"require-dev": {
"symfony/symfony": "~3.4|~4.4",
"symfony/phpunit-bridge": "^3.0",
"twig/twig": "~2.6",
"sonata-project/admin-bundle": ">=3.0",
"phpunit/phpunit": "~7.0|~8.0",
"splash/php-bundle": "dev-master",
"splash/console": "dev-master",
"badpixxel/php-sdk": "dev-main"
},
"scripts": {
"auto-scripts": [
"php bin/console cache:clear",
"php bin/console assets:install web --relative"
],
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-create-project-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@auto-scripts"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web"
}
}