-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
55 lines (55 loc) · 1.5 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
{
"name": "diablomedia/zendframework1-log-writer-mail",
"description": "Zend Framework 1 Log_Writer_Mail component",
"type": "library",
"keywords": [
"framework",
"zf1"
],
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"prefer-stable": true,
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"diablomedia/zendframework1-layout": "^1.0.5",
"diablomedia/zendframework1-mail": "^1.0.5",
"diablomedia/zendframework1-log": "^1.0.5"
},
"autoload": {
"classmap": [
"src/Zend/Log/Writer/Mail.php"
]
},
"autoload-dev": {
"psr-0": {
"Zend_": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.19 || ^10.5.18",
"phpstan/phpstan": "1.10.67",
"friendsofphp/php-cs-fixer": "3.54.0",
"diablomedia/zendframework1-view-helper-layout": ">=1.0.4",
"maglnet/composer-require-checker": "^3.0.0",
"phpro/grumphp-shim": "^2.0.0"
},
"archive": {
"exclude": [
"/tests"
]
},
"include-path": [
"./src"
],
"scripts": {
"test": "phpunit",
"test-with-coverage": "phpunit --coverage-clover=clover.xml",
"phpstan": "phpstan analyze -c phpstan.neon --no-progress --ansi",
"style-check": "php-cs-fixer fix --dry-run -vv"
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true
}
}
}