-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (31 loc) · 1.11 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
{
"name": "tdt/start",
"description": "If you want to start working on The DataTank, start here! This is an installer, a config reader and a router.",
"homepage": "http://thedatatank.com",
"type": "library",
"license": "AGPLv3",
"suggest": {
"tdt/core": "RESTful API to configure several inputs to format using these formatters",
"tdt/input": "A streaming ETL with mapping function included. Depending on your configuration, you can extract files in different formats, transform then into PHP arrays, optionally map them to a vocabulary and load the arrays in a store"
},
"require" : {
"php": ">=5.3.0",
"justinrainbow/json-schema": "1.3.1",
"tdt/core" : "dev-development",
"tdt/pages" : "dev-master"
},
"autoload": {
"psr-0": {
"app" : ""
}
},
"scripts": {
"post-package-install": [
"app\\scripts\\Composer::postPackageInstall"
],
"post-package-update": [
"app\\scripts\\Composer::postPackageUpdate"
]
},
"minimum-stability" : "dev"
}