-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
105 lines (105 loc) · 3.38 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "geo6/document-manager",
"type": "project",
"description": "Browse directories and upload documents using Zend Expressive",
"keywords": [
"php",
"mezzio",
"zend-framework",
"zend",
"expressive",
"explorer",
"file",
"browse",
"upload",
"download",
"image",
"geojson"
],
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.2",
"ext-exif": "*",
"ext-fileinfo": "*",
"geo6/laminas-log-filesystem": "^2.0",
"intervention/image": "2.5.1",
"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.5.0",
"laminas/laminas-log": "2.13.1",
"laminas/laminas-permissions-acl": "2.7.2",
"laminas/laminas-servicemanager": "3.6.4",
"laminas/laminas-stdlib": "3.3.1",
"mezzio/mezzio": "3.6.0",
"mezzio/mezzio-authentication": "1.2.1",
"mezzio/mezzio-authentication-session": "1.0.2",
"mezzio/mezzio-fastroute": "3.3.0",
"mezzio/mezzio-helpers": "5.7.0",
"mezzio/mezzio-session": "1.6.0",
"mezzio/mezzio-session-ext": "1.12.0",
"mezzio/mezzio-twigrenderer": "2.9.0",
"mtymek/blast-base-url": "1.0",
"ralouphie/mimey": "2.1.0",
"symfony/finder": "5.4.0",
"vistag/human-readable": "dev-master"
},
"require-dev": {
"filp/whoops": "^2.1.12",
"laminas/laminas-development-mode": "^3.1",
"mezzio/mezzio-tooling": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.1.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/",
"Script\\": "src/Script/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"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",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"db:auth:init": "Script\\Database\\Authentication::init",
"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"
}
}