-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.77 KB
/
Copy pathcomposer.json
File metadata and controls
82 lines (82 loc) · 2.77 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wp-spaghetti/wp-logger",
"description": "A comprehensive WordPress logging service with Wonolog integration, secure file logging, multi-server protection, and environment-based configuration",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": [
"wordpress",
"logger",
"logging",
"wonolog",
"psr-3"
],
"authors": [
{
"name": "Frugan",
"email": "dev@frugan.it",
"homepage": "https://github.com/frugan-dev",
"role": "Developer"
}
],
"homepage": "https://github.com/wp-spaghetti/wp-logger",
"support": {
"issues": "https://github.com/wp-spaghetti/wp-logger/issues",
"source": "https://github.com/wp-spaghetti/wp-logger",
"docs": "https://github.com/wp-spaghetti/wp-logger#readme"
},
"funding": [
{
"type": "custom",
"url": "https://buymeacoff.ee/frugan"
}
],
"require": {
"php": ">=8.0",
"psr/log": "^1.0|^2.0|^3.0",
"wp-spaghetti/wp-env": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.86",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpro/grumphp-shim": "^2.0",
"phpstan/phpstan": "^1.12|^2.1",
"phpunit/phpunit": "^9.0|^10.0|^11.0|^12.0",
"povils/phpmnd": "^3.6",
"rector/rector": "^1.2|^2.1",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.13 || ^4.0",
"vimeo/psalm": "^5.26|^6.13"
},
"suggest": {
"inpsyde/wonolog": "For advanced WordPress logging with PSR-3 compatibility and Monolog integration"
},
"autoload": {
"psr-4": {
"WpSpaghetti\\WpLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WpSpaghetti\\WpLogger\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"analysis": "@check --tasks=phpstan",
"check": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/grumphp -- run",
"ci": "@check --no-interaction",
"lint": "@check --tasks=phpcsfixer,phplint,rector",
"quality": "@check --tasks=phpmnd,phpparser",
"rector": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/rector -- process --ansi --clear-cache",
"security": "@check --tasks=securitychecker_roave",
"test": "@check --tasks=phpunit",
"test:coverage": "@php -d max_execution_time=0 -d memory_limit=-1 ./vendor/bin/phpunit --coverage-clover=coverage.xml"
}
}