-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.42 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.42 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
83
84
85
86
87
88
{
"name": "logtide/logtide-php",
"description": "LogTide PHP SDK monorepo - log management, tracing, and observability",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Polliog",
"email": "giuseppe@solture.it"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.8",
"guzzlehttp/guzzle": "^7.8",
"monolog/monolog": "^3.0",
"psr/log": "^3.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-middleware": "^1.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"slim/slim": "^4.0",
"slim/psr7": "^1.6",
"php-stubs/wordpress-stubs": "^6.9",
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
"illuminate/http": "^10.0 || ^11.0 || ^12.0",
"illuminate/contracts": "^10.0 || ^11.0 || ^12.0"
},
"repositories": [
{
"type": "path",
"url": "packages/logtide"
},
{
"type": "path",
"url": "packages/logtide-laravel"
},
{
"type": "path",
"url": "packages/logtide-symfony"
},
{
"type": "path",
"url": "packages/logtide-slim"
},
{
"type": "path",
"url": "packages/logtide-wordpress"
}
],
"autoload": {
"psr-4": {
"LogTide\\": "packages/logtide/src/",
"LogTide\\Laravel\\": "packages/logtide-laravel/src/",
"LogTide\\Symfony\\": "packages/logtide-symfony/src/",
"LogTide\\Slim\\": "packages/logtide-slim/src/",
"LogTide\\WordPress\\": "packages/logtide-wordpress/src/"
},
"files": [
"packages/logtide/src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"LogTide\\Tests\\": "packages/logtide/tests/",
"LogTide\\Laravel\\Tests\\": "packages/logtide-laravel/tests/",
"LogTide\\Symfony\\Tests\\": "packages/logtide-symfony/tests/",
"LogTide\\Slim\\Tests\\": "packages/logtide-slim/tests/",
"LogTide\\WordPress\\Tests\\": "packages/logtide-wordpress/tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse --memory-limit=512M",
"cs": "phpcs",
"cs:fix": "phpcbf"
},
"minimum-stability": "stable",
"prefer-stable": true
}