-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.56 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
{
"name": "getolympus/olympus",
"type": "project",
"description": "The Olympus framework, your simple, easy to use and powerfull framework to deploy and work with WordPress. An awesome framework build with ♥ for WordPress developers.",
"keywords": ["olympus", "wordpress", "framework", "php", "capistrano", "composer"],
"homepage": "https://github.com/GetOlympus/Olympus",
"license": "MIT",
"authors": [
{
"name": "Achraf Chouk",
"email": "[email protected]",
"homepage": "https://github.com/crewstyle"
}
],
"autoload": {
"psr-4": {
"Olympus\\Components\\Autoloader\\": "app/components/Autoloader/",
"Olympus\\Components\\Error\\": "app/components/Error/",
"Olympus\\Components\\Handler\\": "app/components/Handler/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
},
"installer-paths":{
"web/statics/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wp-api/wp-api"
],
"web/statics/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/statics/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/cms"
},
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7",
"composer/composer": "^2.1",
"getolympus/olympus-zeus-core": "^2.1",
"getolympus/olympus-hades-error-handler": "^0.0.5",
"johnpbloch/wordpress": "^6.0",
"wpackagist-theme/twentytwentytwo": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"wikimedia/less.php": "^3.1"
},
"scripts": {
"post-install-cmd": [
"Olympus\\Components\\Handler\\Configurator::build",
"if [ ! -L web/xmlrpc.php ]; then ln -s cms/xmlrpc.php web/xmlrpc.php; fi"
],
"post-update-cmd": [
"Olympus\\Components\\Handler\\Configurator::build",
"if [ ! -L web/xmlrpc.php ]; then ln -s cms/xmlrpc.php web/xmlrpc.php; fi",
"find ./app/cache ! -name '.gitkeep' -type f -exec rm -f {} +",
"find ./web/resources/dist ! -name '.gitkeep' -type f -exec rm -f {} +"
],
"clean": [
"find ./app/cache ! -name '.gitkeep' -type f -exec rm -f {} +",
"find ./web/resources/dist ! -name '.gitkeep' -type f -exec rm -f {} +"
],
"test": [
"vendor/bin/phpcs --standard=phpcs.xml ."
]
}
}