-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (29 loc) · 813 Bytes
/
composer.json
File metadata and controls
30 lines (29 loc) · 813 Bytes
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
{
"name": "mgargano/baseball-tools",
"description": "PHP wrapper library that provides access to the Baseball-Databank (www.baseball-databank.org) and succeeding databases",
"keywords": ["baseball", "baseball data", "sabermetrics"],
"homepage" : "http://matgargano.com/projects/baseball-tools/",
"type": "library",
"license": "GPL-3.0+",
"authors": [
{
"name": "Mat Gargano",
"email": "mgargano@gmail.com"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"jv2222/ezsql": "dev-master"
},
"autoload": {
"psr-0": {
"Rotoworld": "src/"
},
"files": [
"src/Class-baseball-tools-helper.php",
"src/Class-baseball-tools.php"
]
}
}