-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 975 Bytes
/
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
{
"name": "aaltomeri/woocommerce-discogs",
"description": "a Plugin that will allow easy import of Discogs data to populate Woocommerce Product Fields",
"keywords": ["wordpress", "plugin", "discogs", "woocommerce"],
"homepage": "https://roots.io",
"license": "MIT",
"authors": [
{
"name": "Thomas Mery",
"email": "[email protected]",
"homepage": "http://aaltomeri.net"
}
],
"type": "wordpress-plugin",
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"php": ">=5.4",
"composer/installers": "v1.0.6",
"ricbra/php-discogs-api": "^1.3",
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"classmap": [ "includes/" ]
},
"require-dev": {
"phpunit/phpunit": "5.7",
"wpackagist-plugin/woocommerce":">=3.0"
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["wpackagist-plugin/woocommerce"]
}
}
}