-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 3.16 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nivseb/lara-monitor",
"description": "APM agent for laravel projects to monitor the application with elastic apm tools.",
"keywords": [
"apm",
"elastic",
"monitoring",
"laravel",
"octane"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nivseb\\LaraMonitor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Marvin Naumann",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"composer-runtime-api": "^2.0",
"illuminate/contracts": "^10.0|^11.0",
"jasny/persist-sql-query": "v3.0.0-alpha1",
"ext-posix": "*"
},
"require-dev": {
"laravel/octane": "^1.0|^2.0",
"orchestra/testbench": "^8.28|^9.0",
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-faker": "^2.0",
"orchestra/pest-plugin-testbench": "^2.0",
"friendsofphp/php-cs-fixer": "^3.64",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.12",
"nunomaduro/phpinsights": "^2.12",
"rector/rector": "^1.2",
"ext-pdo": "*",
"ext-redis": "*",
"guzzlehttp/guzzle": "^7.8"
},
"scripts": {
"check": [
"@composer validate",
"@phpstan",
"@insights"
],
"check-dev": [
"@composer validate",
"@phpstan-dev",
"@insights-dev"
],
"analyse": [
"@phpstan",
"@insights"
],
"analyse-dev": [
"@phpstan-dev",
"@insights-dev"
],
"uniform": [
"@rector",
"@format"
],
"phpstan": "vendor/bin/phpstan analyse -c ./dev/config/phpstan.neon",
"phpstan-dev": "vendor/bin/phpstan analyse -c ./dev/config/phpstan-dev.neon",
"insights-dev": "vendor/bin/phpinsights --no-interaction -vvv --config-path=./dev/config/phpinsights.php analyse src config tests",
"insights": "vendor/bin/phpinsights --no-interaction -vvv --config-path=./dev/config/phpinsights.php analyse src config",
"rector": "vendor/bin/rector process -c ./dev/config/rector.php",
"format": "vendor/bin/php-cs-fixer fix --diff --config=./dev/config/php-cs-fixer.php",
"format:check": "vendor/bin/php-cs-fixer check --config=./dev/config/php-cs-fixer.php",
"test": "vendor/bin/pest --cache-directory=tests/.cache",
"test:parallel": "@test --parallel",
"test:coverage:line": "XDEBUG_MODE=coverage vendor/bin/pest --cache-directory=tests/test_results/.cache --coverage",
"test:coverage:path": "XDEBUG_MODE=coverage vendor/bin/pest --cache-directory=tests/test_results/.cache --coverage --path-coverage"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}