-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
89 lines (89 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "geo6/upload-geojson",
"type": "project",
"description": "Upload (validated) GeoJSON files in a specific directory using PHP",
"keywords": [
"php",
"mezzio",
"zend-framework",
"zend",
"expressive",
"geojson",
"validator",
"upload"
],
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.2",
"laminas/laminas-component-installer": "2.4.0",
"laminas/laminas-config-aggregator": "1.7.0",
"laminas/laminas-dependency-plugin": "2.1.2",
"laminas/laminas-diactoros": "2.8.0",
"laminas/laminas-servicemanager": "3.6.4",
"laminas/laminas-stdlib": "3.3.1",
"mezzio/mezzio": "3.3.0",
"mezzio/mezzio-authentication-session": "1.0.2",
"mezzio/mezzio-fastroute": "3.1.0",
"mezzio/mezzio-helpers": "5.7.0",
"mezzio/mezzio-session-ext": "1.12.0",
"mezzio/mezzio-twigrenderer": "2.6.1",
"mtymek/blast-base-url": "dev-master"
},
"require-dev": {
"filp/whoops": "^2.1.12",
"laminas/laminas-development-mode": "^3.1",
"mezzio/mezzio-tooling": "^2.3",
"phpstan/phpstan": "^0.12.40",
"phpstan/phpstan-strict-rules": "^0.12.4",
"phpunit/phpunit": "^9.0.1",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3.1"
},
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"analyze": "phpstan analyze -l max -c ./phpstan.neon ./src ./config",
"check": [
"@cs-check",
"@test",
"@analyze"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"clear-data-temp": "rm -r data/temp/*",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"expressive": "expressive --ansi",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}