-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.02 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
{
"name": "diepxuan/wordpress",
"description": "The easiest way to install the WordPress use Composer",
"license": [
"OSL-3.0",
"AFL-3.0",
"GPL-2.0+"
],
"version": "0.0.5.1",
"keywords": [
"wordpress",
"blog",
"cms",
"muplugin",
"loader"
],
"type": "composer-plugin",
"authors": [{
"name": "Tran Ngoc Duc",
"email": "caothu91@gmail.com"
}, {
"name": "Tran Ngoc Duc",
"email": "ductn@diepxuan.com"
}],
"require": {
"php": ">=5.2.4",
"composer-plugin-api": "~1.0",
"composer/installers": "~1.0"
},
"require-dev": {},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Diepxuan\\WordPress\\": ""
}
},
"extra": {
"class": "Diepxuan\\WordPress\\Plugin\\WordPress"
},
"config": {
"use-include-path": true
},
"minimum-stability": "alpha",
"prefer-stable": true
}