-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.98 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
64
65
66
67
68
69
70
{
"name": "artex/logger",
"description": "Lightweight, PSR-3-compliant PHP logger for fast and efficient logging.",
"keywords": [
"php",
"psr-3",
"artex",
"logger",
"logging",
"psr-logger",
"php-logging",
"php-library",
"artex-agency",
"error-logging",
"custom-logger",
"artex-software",
"efficient-logging",
"lightweight-logger"
],
"time": "2025-01-26",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/artex-agency/artex-logger",
"support": {
"issues": "https://github.com/artex-agency/artex-logger/issues",
"docs": "https://github.com/artex-agency/artex-logger/docs",
"source": "https://github.com/artex-agency/artex-logger"
},
"authors": [
{
"name": "James Gober",
"email": "me@jamesgober.com",
"homepage": "https://jamesgober.com/",
"role": "Project Lead, Architect, Engineer, Developer, Designer"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.4"
},
"autoload": {
"psr-4": {
"Artex\\Logger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artex\\Logger\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit && echo \"Tests completed!\"",
"phpstan": "@php vendor/bin/phpstan analyse && echo \"Static analysis completed!\"",
"check": [
"@composer validate",
"@phpstan",
"@test"
],
"test:ci": "@php vendor/bin/phpunit --testdox"
},
"minimum-stability": "stable",
"prefer-stable": true
}