-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
117 lines (116 loc) · 3.04 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
117
{
"name": "rollun-com/laminas-skeleton",
"description": "Rollun Laminas skeleton. Begin developing PSR-15 middleware applications in seconds!",
"type": "project",
"homepage": "https://github.com/mezzio/mezzio-skeleton",
"license": "BSD-3-Clause",
"keywords": [
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15",
"laminas",
"laminas-mvc-skeleton"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-component-installer": true,
"rollun-com/rollun-installer": true
}
},
"extra": {
"zf": {
"component-whitelist": [
]
}
},
"support": {
"issues": "https://github.com/mezzio/mezzio-skeleton/issues",
"source": "https://github.com/mezzio/mezzio-skeleton"
},
"require": {
"php": "^8.0",
"guzzle/guzzle": "dev-php-8.0 as v3.9.0",
"laminas/laminas-component-installer": "^2.6",
"laminas/laminas-config-aggregator": "^1.7",
"laminas/laminas-development-mode": "^3.10",
"laminas/laminas-diactoros": "^2.8",
"laminas/laminas-servicemanager": "^3.10",
"laminas/laminas-stdlib": "^3.7.0",
"mezzio/mezzio": "^3.9",
"mezzio/mezzio-fastroute": "^3.4",
"mezzio/mezzio-helpers": "^5.8",
"mezzio/mezzio-session": "^1.6.0",
"rollun-com/rollun-callback": "^7.0.0",
"rollun-com/rollun-datastore": "^8.0.0",
"rollun-com/rollun-logger": "^7.0.1",
"rollun-com/rollun-openapi": "^10.1.0",
"symfony/dotenv": "^6.0.3"
},
"require-dev": {
"filp/whoops": "^2.15",
"phpunit/phpunit": "^9.5.13"
},
"autoload": {
"psr-4": {
"App\\": "src/App"
}
},
"autoload-dev": {
"psr-4": {
"rollun\\test\\": "test/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "./vendor/bin/laminas-development-mode disable",
"development-enable": "./vendor/bin/laminas-development-mode enable",
"development-status": "./vendor/bin/laminas-development-mode status",
"check": [
"@cs-check",
"@test"
],
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v",
"code-sniffer": "phpcs .",
"code-beautiful": "phpcbf .",
"server": "php -S 0.0.0.0:8000 -t public public/index.php"
},
"repositories": [
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-callback.git"
},
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-utils.git"
},
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-installer.git"
},
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-dic.git"
},
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-logger.git"
},
{
"type": "github",
"url": "[email protected]:rollun-com/rollun-datastore.git"
},
{
"type": "github",
"url": "[email protected]:orlyk-rollun/guzzle3.git"
}
],
"minimum-stability": "dev"
}