-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.8 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
60
61
62
63
{
"name": "diablomedia/zendframework1-log",
"description": "Zend Framework 1 Log 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-exception": "^1.1.1",
"diablomedia/zendframework1-config": "^2.0.5",
"diablomedia/zendframework1-loader": "^1.0.5"
},
"autoload": {
"psr-0": {
"Zend_Log_": "src/"
},
"classmap": [
"src/Zend/Log.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.58.0",
"maglnet/composer-require-checker": "^3.0.0",
"phpro/grumphp-shim": "^2.0.0"
},
"archive": {
"exclude": [
"/tests"
]
},
"include-path": [
"./src"
],
"scripts": {
"test": "phpunit ./tests",
"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"
},
"suggest": {
"diablomedia/zendframework1-log-writer-db": "Writer that uses Zend_Db",
"diablomedia/zendframework1-log-writer-mail": "Writer that uses Zend_Mail",
"diablomedia/zendframework1-log-writer-firebug": "Writer that uses Zend_Wildfire (Firebug)",
"ext-dom": "Used in the XML Formatter"
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true
}
}
}