-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
65 lines (65 loc) · 2.05 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
64
65
{
"name": "tdt/core",
"description": "A RESTful data adapter",
"keywords": ["data adapter", "data transformation", "REST API"],
"homepage": "http://thedatatank.com",
"type": "library",
"license": "AGPLv3",
"autoload": {
"classmap": [
"app/models",
"app/database/migrations",
"app/database/seeds"
],
"psr-0": {
"Tdt\\Core": "app/"
}
},
"require": {
"laravel/framework": "4.2.18",
"phpoffice/phpexcel": "1.8.1",
"phpunit/phpunit" : "4.0.17",
"easyrdf/easyrdf" : "dev-master",
"kriswallsmith/buzz": "0.10",
"cartalyst/sentry": "2.1.1",
"willdurand/negotiation" : "1.3.2",
"coreation/gisconverter" : "dev-master",
"proj4php/proj4php" : "dev-inline-projections#89722067010a4c88b7c4c79a7ee187bb2ddb1b61",
"coreation/php-shapefile" : "dev-master",
"elasticsearch/elasticsearch": "1.4.1",
"nesbot/carbon": "~1.14",
"phayes/geophp" : "dev-master",
"ml/json-ld": "1.*",
"ruflin/elastica" : "3.1.*",
"tdt/input": "dev-master",
"doctrine/dbal" : "2.5.12"
},
"require-dev": {
"mockery/mockery": "0.9.7"
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
"php artisan migrate:install",
"php artisan migrate",
"php artisan migrate --package=cartalyst/sentry",
"php artisan db:seed",
"php artisan migrate --package=tdt/input",
"php artisan asset:publish tdt/input",
"php artisan config:publish tdt/input"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize",
"php artisan migrate",
"php artisan migrate --package=cartalyst/sentry"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}