-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.52 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
{
"name": "pronamic/wp-orbis-projects",
"description": "The Orbis Projects plugin extends your Orbis environment with the option to manage projects.",
"license": "GPL-2.0-or-later",
"keywords": [
"orbis",
"projects",
"wordpress",
"plugin",
"bootstrap"
],
"homepage": "https://www.pronamic.eu/orbis/",
"authors": [
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "http://www.remcotolsma.nl",
"role": "Developer"
},
{
"name": "Karel-Jan Tolsma",
"email": "[email protected]",
"homepage": "http://www.kareljantolsma.nl",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/pronamic/wp-orbis/issues",
"source": "https://github.com/pronamic/wp-orbis"
},
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"Pronamic\\Orbis\\Projects\\": "classes/"
}
},
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"wp-slug": "orbis-projects"
},
"require": {
"automattic/jetpack-autoloader": "^3.0",
"pronamic/wp-money": "^2.4",
"sabre/vobject": "^4.1",
"sabre/uri": "^1",
"sabre/xml": "^1"
},
"require-dev": {
"pronamic/wp-coding-standards": "^2.1",
"pronamic/pronamic-cli": "^1.1"
},
"scripts": {
"build": "vendor/bin/pronamic wp-build",
"phpcs": "vendor/bin/phpcs",
"translate": [
"@build",
"rsync --recursive --delete --verbose ./build/project/languages/ ./languages/"
],
"qa": [
"@phpcs"
]
}
}