-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.87 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "netglue/primo-skeleton",
"description": "Opinionated Laminas Mezzio skeleton ready for development with Prismic.io headless CMS",
"type": "project",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"mezzio",
"skeleton",
"middleware",
"prismic",
"prismicio",
"cms"
],
"homepage": "https://github.com/netglue/primo-skeleton",
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laminas": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-laminasviewrenderer"
]
}
},
"require": {
"php": "^7.3 || ~8.0",
"ext-apcu": "*",
"ext-json": "*",
"fig/http-message-util": "^1.1",
"laminas/laminas-cache": "^2.13.0",
"laminas/laminas-cache-storage-adapter-apcu": "^1.1",
"laminas/laminas-cli": "^1.2.0",
"laminas/laminas-component-installer": "^2.5.1",
"laminas/laminas-config-aggregator": "^1.6.0",
"laminas/laminas-diactoros": "^2.8.0",
"laminas/laminas-escaper": "^2.9",
"laminas/laminas-serializer": "^2.10.1",
"laminas/laminas-servicemanager": "^3.7.0",
"laminas/laminas-stdlib": "^3.6.0",
"laminas/laminas-stratigility": "^3.5",
"laminas/laminas-view": "^2.12",
"mezzio/mezzio": "^3.6.0",
"mezzio/mezzio-fastroute": "^3.3.0",
"mezzio/mezzio-helpers": "^5.6.0",
"mezzio/mezzio-laminasviewrenderer": "^2.3",
"mezzio/mezzio-router": "^3.7",
"mezzio/mezzio-template": "^2.2",
"monolog/monolog": "^2.3.5",
"netglue/primo": "^0.6.1",
"netglue/prismic-cli": "^0.3.0",
"netglue/prismic-client": "^0.8.0",
"phly/phly-event-dispatcher": "^1.0",
"php-http/cache-plugin": "^1.7",
"php-http/client-common": "^2.4",
"php-http/curl-client": "^2.1",
"psr/cache": "^1.0",
"psr/container": "^1 || ^2",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"symfony/console": "^5.3",
"webmozart/assert": "^1.9"
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"filp/whoops": "^2.14.4",
"helmich/phpunit-psr7-assert": "^4.3",
"laminas/laminas-development-mode": "^3.4.1",
"netglue/revs": "^1.1",
"php-http/mock-client": "^1.5.0",
"phpunit/phpunit": "^9.5.10",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"App\\": "src/App/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\Unit\\": "test/Unit",
"AppTest\\Integration\\": "test/Integration"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "mezzio --ansi",
"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/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}