-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.9 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": "everon/logger",
"description": "PSR-3 compliant logger with pluggable architecture and unified, shareable configuration based on Monolog",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": ">=8.1",
"monolog/monolog": "^3"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^10",
"popo/generator": "^6",
"symfony/var-dumper": "^6",
"phpstan/phpstan": "^1.10",
"everon/coding-standard": "^3"
},
"autoload": {
"psr-4": {
"Everon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EveronLoggerTests\\Suite\\": "tests/suite/",
"EveronLoggerTests\\Stub\\": "tests/stub/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon"
],
"cs-fix": [
"vendor/bin/phpcbf -q --standard=phpcs.xml ${1-src}"
],
"cs-check": [
"vendor/bin/phpcs --colors -p -s --report-width=120 --extensions=php --standard=phpcs.xml ${1-src}"
],
"cs-list": [
"vendor/bin/phpcs -e --standard=phpcs.xml"
],
"popo": [
"vendor/bin/popo generate -s popo/everon-logger.popo.yml -c popo/shared-plugin.config.yml"
],
"tests": [
"@popo",
"vendor/bin/phpunit --testdox --no-coverage"
],
"tests-c": [
"@popo",
"vendor/bin/phpunit --testdox --group acceptance,default"
]
},
"scripts-descriptions": {
"popo": "Generate POPO files",
"test": "Quick tests",
"test-ac": "Quick AC tests",
"test-coverage": "Tests with coverage"
},
"suggest": {
"everon-logger-basic": "Set of basic plugins that require no extra vendor dependencies",
"everon-logger-gelf": "Plugin that allows to send messages to Graylog2 servers",
"everon-logger-redis": "Plugin that allows to send messages to Redis servers"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}