-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.82 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
{
"type": "silverstripe-project",
"require": {
"silvershop/recipe": "^4",
"silverstripe-themes/simple": "^3",
"omnipay/dummy": "^3",
"dnadesign/silverstripe-populate": "dev-master",
"php-http/guzzle7-adapter": "1.x-dev"
},
"config": {
"process-timeout": 1200,
"preferred-install": {
"silvershop/*": "source"
},
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:silvershop/recipe-silvershop.git"
}
],
"scripts": {
"lint": "phpcs --extensions=php app/ vendor/silvershop/",
"syntax-check": "find app/ vendor/silvershop -type f -name '*.php' -exec php -l {} \\;",
"lint-clean": "phpcbf app/ vendor/silvershop/"
},
"extra": {
"expose": [
"app/css",
"app/js",
"themes/simple/css",
"themes/simple/images",
"themes/simple/javascript",
"themes/simple/webfonts"
],
"resources-dir": "_resources",
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/mimevalidator.yml",
"app/_config/mysite.yml",
"app/code/Page.php",
"app/code/PageController.php",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"install-frameworkmissing.html",
"install.php",
"web.config"
]
}
}