-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.76 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.76 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
{
"name": "rollun-com/rollun-logger",
"description": "Laminas style Logger",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "avz-cmf",
"email": "email@example.com"
},
{
"name": "victorynox",
"email": "it.proffesor02@gmail.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-sockets": "*",
"code-tool/jaeger-client-php": "^3.3",
"laminas/laminas-stdlib": "^3.7.0",
"laminas/laminas-servicemanager": "^3.10",
"psr/http-message": "^1.0",
"laminas/laminas-http": "^2.15",
"elasticsearch/elasticsearch": "^7.16",
"psr/http-server-middleware": "^1.0",
"laminas/laminas-mail": "^2.15.1",
"laminas/laminas-filter": "^2.14.0",
"psr/log": "^1.1.4",
"promphp/prometheus_client_php": "^2",
"promphp/prometheus_push_gateway_php": "^1"
},
"require-dev": {
"ext-redis": "*",
"phpunit/phpunit": "^9.5.10",
"symfony/dotenv": "^6.0.3",
"laminas/laminas-config-aggregator": "^1.7",
"laminas/laminas-db": "^2.13.4",
"laminas/laminas-diactoros": "^2.8.0",
"rector/rector": "^2.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"rollun\\logger\\": "src/Logger/src",
"rollun\\tracer\\": "src/Tracer/src"
}
},
"autoload-dev": {
"psr-4": {
"Rollun\\Test\\Logger\\": "test/Logger"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v",
"clear-config-cache": "php bin/clear-config-cache.php",
"code-sniffer": "phpcs ./src",
"code-beautiful": "phpcbf ./src",
"server": "php -S 0.0.0.0:8000 -t public public/index.php",
"rector": "rector process --dry-run"
}
}