This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.54 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
{
"name": "webimpress/mezzio-latte",
"description": "Latte integration for Mezzio",
"license": "BSD-2-Clause",
"keywords": [
"mezzio",
"laminas",
"latte"
],
"support": {
"issues": "https://github.com/webimpress/mezzio-latte/issues",
"source": "https://github.com/webimpress/mezzio-latte",
"rss": "https://github.com/webimpress/mezzio-latte/releases.atom"
},
"require": {
"php": "^7.3 || ^8.0",
"latte/latte": "^2.9.1",
"psr/container": "^1.0",
"mezzio/mezzio-helpers": "^5.4",
"mezzio/mezzio-router": "^3.2.1",
"mezzio/mezzio-template": "^2.0.1"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.8",
"phpunit/phpunit": "^9.4.3",
"webimpress/coding-standard": "^1.2"
},
"autoload": {
"psr-4": {
"Webimpress\\Mezzio\\Latte\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebimpressTest\\Mezzio\\Latte\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "Webimpress\\Mezzio\\Latte\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}