-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 3.69 KB
/
composer.json
File metadata and controls
112 lines (112 loc) · 3.69 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vubib/vubib",
"description": "VuBib is a bibliography management software, developed with Zend Expressive frameworks as a base.",
"type": "project",
"homepage": "https://github.com/FalveyLibraryTechnology/VuBib",
"license": "GPL 2.0",
"keywords": [
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15",
"zf",
"zendframework",
"mezzio"
],
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-component-installer": true,
"laminas/laminas-dependency-plugin": true
}
},
"extra": {
"laminas": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-laminasviewrenderer"
]
}
},
"support": {
"issues": "https://github.com/mezzio/mezzio-skeleton/issues",
"source": "https://github.com/mezzio/mezzio-skeleton",
"rss": "https://github.com/mezzio/mezzio-skeleton/releases.atom",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/expressive"
},
"require": {
"php": "^8.1",
"guidofaecke/blast-base-url": "^2.0",
"sandrokeil/interop-config": "^2.1",
"shrikeh/teapot": "^2.3",
"slim/flash": "^0.4.0",
"symfony/dependency-injection": "^6.0",
"laminas/laminas-code": "^4.0",
"laminas/laminas-component-installer": "^3.0",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-db": "^2.10",
"laminas/laminas-diactoros": "^3.1",
"mezzio/mezzio": "^3.0.1",
"mezzio/mezzio-fastroute": "^3.0",
"mezzio/mezzio-helpers": "^5.0",
"mezzio/mezzio-laminasviewrenderer": "^2.0",
"laminas/laminas-form": "^3.0",
"laminas/laminas-paginator": "^2.8",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-session": "^2.8",
"laminas/laminas-stdlib": "^3.1",
"laminas/laminas-dependency-plugin": "^2.1"
},
"require-dev": {
"behat/mink": "^1.7",
"behat/mink-selenium2-driver": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"filp/whoops": "^2.1.12",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.0",
"mezzio/mezzio-tooling": "^2.0",
"laminas/laminas-development-mode": "^3.1"
},
"autoload": {
"psr-4": {
"App\\": "src/App/src/",
"VuBib\\": "src/VuBib/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/",
"VuBibTest\\": "src/VuBib/tests/"
}
},
"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:3000 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}