forked from beyondcode/laravel-server-timing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.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
{
"name": "matchory/laravel-server-timing",
"description": "Add Server-Timing header information from within your Laravel apps.",
"type": "libary",
"keywords": [
"matchory",
"laravel",
"server-timing",
"performance",
"laravel-package",
"laravel-server-timing"
],
"homepage": "https://github.com/matchory/laravel-server-timing",
"license": "MIT",
"authors": [
{
"name": "Moritz Friedrich",
"email": "[email protected]",
"homepage": "https://matchory.com",
"role": "Developer"
},
{
"name": "Marcel Pociot",
"email": "[email protected]",
"homepage": "https://beyondco.de",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^9.0|^10.0|^11.0",
"symfony/stopwatch": "^5.0|^6.2|^v7.1"
},
"require-dev": {
"laravel/octane": "^2.4.0",
"orchestra/testbench": "^v9.1.2",
"phpunit/phpunit": "^11.1",
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.11.5"
},
"autoload": {
"psr-4": {
"Matchory\\ServerTiming\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Matchory\\ServerTiming\\Tests\\": "tests"
}
},
"scripts": {
"analyze": "vendor/bin/phpstan analyse --level=9 src tests",
"test": "vendor/bin/phpunit",
"test:ci": "vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Matchory\\ServerTiming\\ServerTimingServiceProvider"
],
"aliases": {
"ServerTiming": "Matchory\\ServerTiming\\Facades\\ServerTiming"
}
}
}
}