-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 979 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
{
"name": "arvodia/grouper",
"description": "Composer plugin, package and tasks manager by group",
"keywords": ["composer", "plugin", "php", "packages", "tasks", "groups"],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Sidi Said Redouane",
"email": "arvodia@hotmail.com",
"homepage": "https://github.com/arvodia"
}
],
"homepage": "https://github.com/arvodia/grouper/",
"require": {
"composer-plugin-api": "^2.3",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"composer/composer": "^2.3"
},
"autoload": {
"psr-4": {
"Arvodia\\Grouper\\": "src",
"MatthiasMullie\\Minify\\": "../../matthiasmullie/minify/src",
"MatthiasMullie\\PathConverter\\": "../../matthiasmullie/minify/src"
}
},
"extra": {
"class": "Arvodia\\Grouper\\Composer\\GrouperPlugin"
}
}