-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (37 loc) · 879 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
40
41
42
43
44
45
46
47
{
"name" : "thadafinser/package-info",
"description" : "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
"require" : {
"php" : "~5.6|~7.0",
"composer-plugin-api" : "^1.0"
},
"require-dev" : {
"phpunit/phpunit" : "^5.4.7",
"composer/composer" : "^1.2.0"
},
"license" : "MIT",
"autoload-dev" : {
"psr-4" : {
"PackageInfoTest\\" : "tests"
}
},
"extra" : {
"class" : "PackageInfo\\Installer"
},
"autoload" : {
"psr-4" : {
"PackageInfo\\" : "src"
}
},
"type" : "composer-plugin",
"scripts" : {
"post-update-cmd" : "PackageInfo\\Installer::dumpAll",
"post-install-cmd" : "PackageInfo\\Installer::dumpAll"
},
"authors" : [
{
"name" : "ThaDafinser",
"email" : "[email protected]"
}
]
}