-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.6 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
{
"name": "sandermuller/stopwatch",
"description": "Stopwatch to measure execution times (profile code) for Laravel and PHP projects",
"keywords": ["PHP", "Laravel", "Stopwatch", "profiling"],
"homepage": "https://github.com/SanderMuller/Stopwatch",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sander Muller",
"email": "[email protected]",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"illuminate/collections": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"nesbot/carbon": "^2|^3",
"symfony/var-dumper": "^6|^7"
},
"require-dev": {
"laravel/pint": "^1.18",
"nunomaduro/collision": "^8.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"rector/rector": "^1.2",
"roave/security-advisories": "dev-latest",
"tomasvotruba/type-coverage": "^0.3.1 || ^1.0.0"
},
"autoload": {
"psr-4": {
"SanderMuller\\Stopwatch\\": "src"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G -v",
"format": "vendor/bin/pint",
"rector": "vendor/bin/rector process"
},
"config": {
"platform": {
"php": "8.2"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}