-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.47 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
{
"name": "geo6/manager",
"type": "project",
"description": "",
"keywords": [],
"license": "proprietary",
"require": {
"php": "^7.3",
"composer/package-versions-deprecated": "^1.10.99",
"doctrine/dbal": "^3.0",
"doctrine/sql-formatter": "^1.1",
"intervention/image": "^2.5",
"laminas/laminas-component-installer": "^2.1.2",
"laminas/laminas-config-aggregator": "^1.2",
"laminas/laminas-diactoros": "^2.3.0",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-stdlib": "^3.2.1",
"laminas/laminas-zendframework-bridge": "^1.0",
"mezzio/mezzio": "^3.2.1",
"mezzio/mezzio-fastroute": "^3.0.3",
"mezzio/mezzio-helpers": "^5.3",
"mezzio/mezzio-twigrenderer": "^2.6"
},
"require-dev": {
"filp/whoops": "^2.7.1",
"laminas/laminas-development-mode": "^3.2",
"mezzio/mezzio-tooling": "^2.0",
"phpspec/prophecy": "^1.10.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.3.7",
"roave/security-advisories": "dev-master"
},
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"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/src/",
"API\\": "src/API/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/",
"APITest\\": "test/APITest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "mezzio --ansi",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}