-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1.49 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
{
"name": "cubetech/wptheme.basetheme",
"version": "1.8.0",
"description": "This is the new cubetech base theme using UIKit and a new, sturdy core library",
"license": "MIT",
"type": "wordpress-theme",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"wpackagist-plugin/akismet": "^4",
"wpackagist-plugin/wp-mail-smtp": "^1",
"wpackagist-plugin/members": "^2",
"wpackagist-plugin/user-switching": "^1",
"wpackagist-plugin/simple-custom-post-order": "^2",
"wpackagist-plugin/wp-piwik": "^1",
"wpackagist-plugin/wordpress-seo": "^12",
"wpackagist-plugin/classic-editor": "^1",
"wpackagist-plugin/query-monitor": "^3",
"wpackagist-plugin/disable-comments": "^1",
"wpackagist-plugin/safe-svg": "^1",
"wpackagist-plugin/acf-gravityforms-add-on": "^1"
},
"extra": {
"installer-paths": {
"../../../wp-content/plugins/{$name}/": ["type:wordpress-plugin"]
}
},
"autoload": {
"psr-4": {
"Cubetech\\": "src/"
}
},
"authors": [
{
"name": "Alex Scherer",
"email": "alex.scherer@cubetech.ch"
},
{
"name": "Marc Mentha",
"email": "marc.mentha@cubetech.ch"
},
{
"name": "Steeve Jeannin",
"email": "steeve@cubetech.ch"
}
]
}