forked from Ingothq/ingot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.08 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": "ingot/ingot",
"description": "I am a desciption",
"type": "wordpress-plugin",
"keywords": [
"wordpress"
],
"minimum-stability" : "dev",
"license": "GPL-2.0+",
"authors": [
{
"name": "Josh Pollock",
"homepage": "http://JoshPress.net",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/WP-API/WP-API"
}
],
"require": {
"wp-api/wp-api" : "*",
"calderawp/dismissible-notice": "dev-master"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
"phpunit/phpunit": "3.7.31",
"phpunit/php-invoker": "1.1.3"
},
"autoload": {
"psr-4": {
"ingot\\": "classes"
},
"files": [
"includes/functions.php",
"includes/active_check.php",
"includes/licensing.php"
]
},
"extra" : {
"installer-paths": {
"wp-api" : ["type:wordpress-plugin"]
}
}
}