-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
63 lines (63 loc) · 2.01 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "BlueHerons/StatTracker",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "johnluetke",
"email": "john@johnluetke.net",
"homepage": "http://github.com/johnluetke",
"role": "Lead Developer"
},
{
"name": "Fragger",
"email": "wonderfulweb@gmail.com",
"homepage": "http://github.com/Fragger",
"role": "Developer"
},
{
"name": "ForrestMcIntyre",
"homepage": "http://github.com/ForrestMcIntyre",
"role": "Contributor"
},
{
"name": "others",
"homepage": "https://github.com/BlueHerons/StatTracker/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/BlueHerons/StatTracker/issues",
"wiki": "https://github.com/BlueHerons/StatTracker/wiki"
},
"autoload": {
"psr-4": {
"BlueHerons\\StatTracker\\": "src/BlueHerons/StatTracker"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/BlueHerons/php-slack"
}
],
"require": {
"php": ">=5.5",
"ext-imagick": "~3.1",
"ext-pdo_mysql": "*",
"lib-curl": "*",
"google/apiclient": "~1.0@beta",
"katzgrau/klogger": "1.0.*",
"oyejorge/less.php": "~1.5",
"php-curl-class/php-curl-class": "~2.1",
"swiftmailer/swiftmailer": "~5.1.0",
"silex/silex": "~1.2",
"twig/twig": "~1.8",
"endroid/qrcode": "^1.5",
"frlnc/php-slack": "dev-master"
},
"scripts": {
"describe": "composer describe-version; composer describe-contributors",
"describe-contributors": "curl https://api.github.com/repos/BlueHerons/StatTracker/contributors | jsawk -a 'return this.join(\"\\n\")' 'return this.login' > CONTRIBUTORS; cat CONTRIBUTORS",
"describe-version": "git describe --always > VERSION; cat VERSION"
}
}