-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.78 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.78 KB
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
{
"name": "pronamic/wt-orbis-5",
"description": "The default WordPress theme for Orbis.",
"version": "5.0.0",
"keywords": [
"orbis",
"wordpress",
"theme",
"bootstrap"
],
"homepage": "http://www.pronamic.eu/themes/orbis-5/",
"authors": [
{
"name": "Remco Tolsma",
"email": "info@remcotolsma.nl",
"homepage": "http://www.remcotolsma.nl",
"role": "Developer"
},
{
"name": "Karel-Jan Tolsma",
"email": "info@kareljantolsma.nl",
"homepage": "http://www.kareljantolsma.nl",
"role": "Developer"
}
],
"support": {
"email": "support@pronamic.nl",
"issues": "https://github.com/pronamic/wt-orbis-5/issues",
"source": "https://github.com/pronamic/wt-orbis-5"
},
"type": "wordpress-theme",
"autoload": {
"classmap": [
"classes/"
]
},
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"wp-slug": "orbis-5"
},
"require": {
"pronamic/wp-money": "^2.4",
"php": ">=5.2.0",
"automattic/jetpack-autoloader": "^3.0"
},
"require-dev": {
"phpmd/phpmd": "^2.4",
"deployer/deployer": "^7.0",
"pronamic/wp-coding-standards": "^2.1",
"pronamic/pronamic-cli": "^1.1"
},
"scripts": {
"build": [
"rm -rf ./build",
"mkdir ./build",
"mkdir ./build/stage-1",
"mkdir ./build/stage-2",
"rsync --recursive --verbose --exclude-from=.distignore --exclude=/vendor/ ./ ./build/stage-1/",
"composer install --no-dev --prefer-dist --optimize-autoloader --working-dir=./build/stage-1/",
"rsync --recursive --verbose --exclude-from=.distignore ./build/stage-1/ ./build/stage-2/"
],
"phpcs": "vendor/bin/phpcs",
"translate": [
"@build",
"rsync --recursive --delete --verbose ./build/stage-2/languages/ ./languages/"
],
"qa": [
"@phpcs"
]
}
}