-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.75 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.75 KB
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
{
"name": "rollun-com/rollun-openapi",
"description": "Bridge between rollun skeleton and openapi generated code",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"zendframework/zend-component-installer": true,
"rollun-com/rollun-installer": true,
"ocramius/package-versions": true,
"laminas/laminas-component-installer": true
}
},
"require": {
"php": ">8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"articus/data-transfer": "^0.5.2",
"articus/path-handler": "0.6.1",
"doctrine/annotations": "^1.8",
"guzzlehttp/guzzle": "^7",
"laminas/laminas-cache": "^3.1.2",
"laminas/laminas-cache-storage-adapter-blackhole": "^2.0.0",
"laminas/laminas-cache-storage-adapter-filesystem": "^2.0.1",
"laminas/laminas-code": "*",
"laminas/laminas-component-installer": "*",
"laminas/laminas-config-aggregator": "^1.7",
"laminas/laminas-diactoros": "^2.8.0",
"laminas/laminas-serializer": "^2.13.0",
"laminas/laminas-servicemanager": "^3.10",
"mezzio/mezzio": "^3.9",
"mezzio/mezzio-fastroute": "^3.4",
"mezzio/mezzio-helpers": "^5.8",
"nette/php-generator": "^3.4",
"nikic/fast-route": "^1.3",
"rollun-com/rollun-dic": "^4.0.0",
"rollun-com/rollun-logger": "^7.7.0",
"symfony/console": "^6.0",
"symfony/dotenv": "^6.0.3"
},
"require-dev": {
"ext-yaml": "*",
"laminas/laminas-development-mode": "^3.10",
"filp/whoops": "^2.15",
"phpunit/phpunit": "^9.5.10",
"psr/log": "^1.1.4"
},
"autoload": {
"psr-4": {
"OpenAPI\\": "src/OpenAPI/",
"DataStoreExample\\": "src/DataStoreExample/src/",
"Task\\": "src/Task/src/",
"HelloUser\\": "src/HelloUser/src/",
"Test\\": "src/Test/src",
"ClientTest\\": "src/ClientTest/src"
}
},
"autoload-dev": {
"psr-4": {
"rollun\\test\\OpenAPI\\": "test/"
}
},
"bin": [
"bin/openapi-generator"
],
"extra": {
"zf": {
"component": "OpenAPI\\",
"config-provider": "OpenAPI\\ConfigProvider"
}
},
"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"
},
"minimum-stability": "stable"
}