-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
59 lines (59 loc) · 1.6 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": "phly/phly-simple-page",
"description": "ZF2 Module for easily creating static pages",
"type": "library",
"keywords": [
"laminas",
"mvc",
"module"
],
"homepage": "https://github.com/weierophinney/PhlySimplePage",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "matthew@weierophinney.net",
"homepage": "https://mwop.net/"
}
],
"autoload": {
"psr-4": {
"PhlySimplePage\\": "src/",
"PhlySimplePageTest\\": "test/"
}
},
"require": {
"php": "^7.2",
"laminas/laminas-cache": "^2.9",
"laminas/laminas-eventmanager": "^3.2.1",
"laminas/laminas-http": "^2.9.1",
"laminas/laminas-mvc": "^3.1.1",
"laminas/laminas-stdlib": "^3.2.1",
"laminas/laminas-view": "^2.9.1",
"symfony/console": "^4.0 || ^5.0",
"ocramius/package-versions": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.0.0@rc || ~2.0.0",
"phpunit/phpunit": "^8.5.2",
"laminas/laminas-servicemanager": "^3.4.0"
},
"extra": {
"laminas": {
"module": "PhlySimplePage"
}
},
"bin": [
"bin/phly-simple-page"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}