forked from merlinthemagic/MTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 939 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" : "merlinthemagic/mts",
"description" : "PHP Automation Tools",
"type" : "library",
"homepage" : "https://github.com/merlinthemagic/MTS",
"keywords" : [
"PHP",
"Automation",
"Shell",
"Browser",
"PhantomJS",
"Bash"
],
"authors" : [{
"name" : "Martin Madsen",
"email" : "[email protected]",
"role" : "Developer",
"homepage" : "https://github.com/merlinthemagic"
}
],
"support" : {
"issues" : "https://github.com/merlinthemagic/MTS/issues",
"email" : "[email protected]"
},
"require" : {
"php" : ">=5.3.0"
},
"autoload" : {
"files" : [
"MTS/EnableMTS.php"
]
},
"scripts" : {
"post-install-cmd" : "php vendor/merlinthemagic/mts/MtsSetup.php",
"post-update-cmd" : "php vendor/merlinthemagic/mts/MtsSetup.php",
"post-package-install" : "php vendor/merlinthemagic/mts/MtsSetup.php",
"post-package-update" : "php vendor/merlinthemagic/mts/MtsSetup.php"
}
}