-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.22 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
66
67
68
69
70
71
72
{
"name": "thet/informe-gei",
"description": "Inventario Nacional de Gases de Efecto Invernadero (GEI)",
"type": "project",
"license": "BSD-3-Clause",
"keywords": [
"ministerio-ambiente",
"presidencia",
"efecto",
"invernadero",
"gases",
"emisiones"
],
"authors": [
{
"name": "Thet",
"homepage": "http://thet.com.ar"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-component-installer": "^1.0 || ^0.7 || ^1.0.0-dev@dev",
"zendframework/zend-mvc": "^3.0.1",
"zfcampus/zf-development-mode": "^3.0",
"zendframework/zend-log": "^2.9",
"zendframework/zend-db": "^2.8",
"zendframework/zend-hydrator": "^2.2",
"zendframework/zend-serializer": "^2.8",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-mvc-console": "^1.1",
"zircote/swagger-php": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"phpunit/dbunit": "^3.0",
"doctrine/doctrine-orm-module": "^1.1",
"doctrine/migrations": "^1.5",
"jdorn/sql-formatter": "^1.2",
"zendframework/zend-i18n": "^2.7"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/",
"Api\\": "module/Api/src/"
}
},
"autoload-dev": {
"psr-4": {
"ApplicationTest\\": "module/Application/test/",
"ApiTest\\": "module/Api/test/"
}
},
"extra": [],
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"post-create-project-cmd": [
"@development-enable"
],
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php",
"test": "phpunit"
},
"require-dev": {
"zendframework/zend-debug": "^2.5",
"phpunit/phpunit": "^6.1",
"zendframework/zend-test": "^3.1",
"zendframework/zend-developer-tools": "^1.1"
}
}