forked from sulu/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sulu/skeleton",
"license": "MIT",
"type": "project",
"description": "Project template for starting your new project based on the Sulu content management system",
"homepage": "https://sulu.io/",
"keywords": [
"symfony",
"sulu",
"sulucms",
"cms",
"web-application",
"platform",
"data-managment",
"project-template"
],
"authors": [
{
"name": "Sulu Community",
"homepage": "https://github.com/sulu/skeleton/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/sulu/skeleton/issues",
"source": "https://github.com/sulu/skeleton",
"docs": "http://docs.sulu.io/"
},
"require": {
"php": "^7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"dantleech/phpcr-migrations-bundle": "^1.0",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friendsofsymfony/http-cache-bundle": "^2.6",
"jackalope/jackalope-doctrine-dbal": "^1.3",
"sulu/sulu": "^2.1@dev",
"symfony/config": "^4.3",
"symfony/dotenv": "^4.3",
"symfony/flex": "^1.2",
"symfony/framework-bundle": "^4.3",
"symfony/monolog-bridge": "^4.3",
"symfony/monolog-bundle": "^3.1",
"symfony/security-bundle": "^4.4",
"symfony/swiftmailer-bundle": "^3.1.4",
"symfony/twig-bundle": "^4.3",
"handcraftedinthealps/zendsearch": "^2.0"
},
"require-dev": {
"phpcr/phpcr-shell": "^1.0",
"symfony/debug-bundle": "^4.3",
"symfony/error-handler": "^4.4",
"symfony/phpunit-bridge": "^4.3",
"symfony/thanks": "^1.1",
"symfony/web-profiler-bundle": "^4.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "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",
"bin/websiteconsole cache:clear": "php-script",
"bin/adminconsole sulu:media:init": "php-script",
"bin/adminconsole massive:search:init": "php-script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-root-package-install": [
"php -r \"file_put_contents('.env.local', 'APP_ENV=dev' . PHP_EOL);\"",
"php -r \"file_put_contents('.env', str_replace('APP_SECRET=', 'APP_SECRET=' . bin2hex(random_bytes(16)), file_get_contents('.env')));\""
],
"post-create-project-cmd": [
"Sulu\\Bundle\\CoreBundle\\Composer\\ScriptHandler::removeComposerLockFromGitIgnore",
"Sulu\\Bundle\\CoreBundle\\Composer\\ScriptHandler::removePackageLockJsonFromGitIgnore"
]
},
"config": {
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true
}
}
}