-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 972 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
{
"name": "bkief29/pcomposer",
"type": "composer-plugin",
"description": "A composer plugin to provide the ability to share and reuse packages across the system.",
"license": "MIT",
"keywords": ["composer", "composer-plugin", "composer-installer"],
"authors": [
{
"name": "Brandon Kiefer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.3"
},
"autoload": {
"psr-0": {"Composer\\PerformantComposer": "src/"}
},
"extra": {
"class": [
"Composer\\PerformantComposer\\LibraryPlugin"
],
"shared-package": {
"vendor-dir": "",
"symlink-dir": "vendor",
"symlink-base-path": "",
"symlink-enabled": true,
"package-list": [
"*"
]
}
}
}