forked from mnsami/composer-custom-directory-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 948 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
{
"name": "mnsami/composer-custom-directory-installer",
"type": "composer-plugin",
"description": "A composer plugin, to help install packages of different types in custom paths.",
"license": "MIT",
"keywords": ["composer", "composer-plugin", "composer-installer"],
"authors": [
{
"name": "Mina Nabil Sami",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3",
"composer-plugin-api": "^1.0 || ^2.0"
},
"autoload": {
"psr-0": {"Composer\\CustomDirectoryInstaller": "src/"}
},
"extra": {
"class": [
"Composer\\CustomDirectoryInstaller\\LibraryPlugin",
"Composer\\CustomDirectoryInstaller\\PearPlugin",
"Composer\\CustomDirectoryInstaller\\PluginPlugin"
],
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}