-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
128 lines (128 loc) · 4.23 KB
/
Copy pathcomposer.json
File metadata and controls
128 lines (128 loc) · 4.23 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gemstracker/api",
"description": "API module for GemsTracker",
"type": "library",
"homepage": "https://gemtracker.org",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/psr7": "^1.8.5",
"http-interop/http-middleware": "^0.4.1",
"league/oauth2-server": "^6.0",
"magnafacta/zalt-loader": "dev-master",
"gemstracker/gemstracker": "dev-master",
"mtymek/blast-base-url": "^0.2.0",
"robmorgan/phinx": "^0.10.6",
"laminas/laminas-component-installer": "1.1.3",
"webimpress/composer-extra-dependency": "0.2.3",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-db": "^2.9",
"mezzio/mezzio": "^2.2",
"mezzio/mezzio-fastroute": "^2.2",
"mezzio/mezzio-helpers": "^4.0",
"mezzio/mezzio-twigrenderer": "^1.4",
"laminas/laminas-filter": "^2.7",
"laminas/laminas-hydrator": "^2.2",
"laminas/laminas-i18n": "^2.7",
"laminas/laminas-log": "^2.10",
"laminas/laminas-permissions-acl": "^2.7",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-stdlib": "^3.1",
"lcobucci/jwt": "3.3.3",
"jvangestel/data-set-mapper": "dev-master",
"jvangestel/gems-reference-data": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
"phpunit/dbunit": "^3.0",
"squizlabs/php_codesniffer": "^2.8.1",
"zfcampus/zf-development-mode": "^3.1",
"mezzio/mezzio-tooling": "^0.4.1",
"filp/whoops": "^2.1.7",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"App\\": "src/App/src/",
"Gems\\Rest\\": "src/Rest/",
"Gems\\Legacy\\": "src/Gems/Legacy/",
"Prediction\\": "src/Prediction/",
"Pulse\\Api\\": "src/Pulse/Api/",
"Gems\\DataSetMapper\\": "src/DataSetMapper",
"Gems\\ReferenceData\\": "src/ReferenceData",
"Ichom\\": "src/Ichom"
}
},
"autoload-dev": {
"psr-4": {
"GemsTest\\Rest\\": "test/Rest/",
"PulseTest\\Rest\\": "test/Pulse/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/GemsTracker/gemstracker-library.git"
},
{
"type": "git",
"url": "https://github.com/jvangestel/laminas-component-installer.git"
},
{
"type": "git",
"url": "https://github.com/jvangestel/composer-extra-dependency.git"
},
{
"type": "git",
"url": "https://github.com/GemsTracker/gemstracker-responsive-template.git"
},
{
"type": "git",
"url": "https://github.com/GemsTracker/gemstracker-template.git"
},
{
"type": "git",
"url": "https://github.com/MagnaFacta/zalt-loader.git"
},
{
"type": "git",
"url": "https://github.com/MagnaFacta/zalt-model.git"
},
{
"type": "git",
"url": "https://github.com/MagnaFacta/zalt-soap.git"
},
{
"type": "git",
"url": "https://github.com/jvangestel/gems-reference-data.git"
},
{
"type": "git",
"url": "https://github.com/jvangestel/data-set-mapper.git"
}
]
}