-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 2.77 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
{
"name": "marcguyer/mezzio-doctrine-oauth2-example",
"description": "Source code for https://marc.guyer.me/posts/example-application-with-mezzio-doctrine-oauth2",
"type": "project",
"homepage": "https://marc.guyer.me/posts/example-application-with-mezzio-doctrine-oauth2",
"license": "BSD-3-Clause",
"keywords": [
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15",
"zf",
"zendframework",
"mezzio",
"mezzio",
"doctrine",
"phpunit",
"oauth2"
],
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute"
]
}
},
"support": {
"issues": "https://github.com/marcguyer/mezzio-doctrine-oauth2-example/issues",
"source": "https://github.com/marcguyer/mezzio-doctrine-oauth2-example"
},
"require": {
"php": "^8.0",
"composer/package-versions-deprecated": "^1.10.99",
"laminas/laminas-component-installer": "^2.5.0",
"laminas/laminas-config-aggregator": "^1.5.0",
"laminas/laminas-diactoros": "^2.6.0",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-stdlib": "^3.3.1",
"laminas/laminas-zendframework-bridge": "^1.2.0",
"mezzio/mezzio": "^3.5.0",
"mezzio/mezzio-authentication-oauth2": "^2.1",
"mezzio/mezzio-fastroute": "^3.0.3",
"mezzio/mezzio-helpers": "^5.6.0",
"roave/psr-container-doctrine": "^3.1"
},
"require-dev": {
"filp/whoops": "^2.7.1",
"helmich/phpunit-psr7-assert": "^4.3",
"laminas/laminas-development-mode": "^3.3.0",
"mezzio/mezzio-tooling": "^1.4.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.6",
"weirdan/doctrine-psalm-plugin": "^1.1"
},
"autoload": {
"psr-4": {
"App\\": "src/App/",
"Data\\": "src/Data/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/",
"AppFunctionalTest\\": "test/AppFunctionalTest/"
}
},
"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",
"expressive": "expressive --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"
}
}