-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.62 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
{
"name": "ezimuel/zimuel.it",
"description": "Enrico Zimuel's web site, based on PHP 7 and zend-expessive",
"type": "web",
"homepage": "https://github.com/ezimuel/zimuel.it",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Enrico Zimuel",
"homepage": "http://www.zimuel.it"
}
],
"require": {
"php": "^7.4",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^2.0",
"zendframework/zend-expressive-helpers": "^3.0.1",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-expressive-fastroute": "^2.0",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-expressive-platesrenderer": "^1.2",
"zendframework/zend-paginator": "^2.7.0",
"guzzlehttp/guzzle": "^6.5",
"php-http/guzzle6-adapter": "^1.1",
"sparkpost/sparkpost": "^2.1",
"google/recaptcha": "~1.1",
"zendframework/zend-feed": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Zimuel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZimuelTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}