-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.07 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
{
"name": "blumilksoftware/laravel-heatmap",
"description": "Heatmap library for Laravel",
"type": "library",
"require": {
"php": "^8.2",
"nesbot/carbon": "^3.5",
"illuminate/support": "^11.11",
"illuminate/database": "^11.12",
"blumilksoftware/heatmap": "0.0.2"
},
"require-dev": {
"blumilksoftware/codestyle": "^3.2",
"phpunit/phpunit": "^11.2"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Blumilk\\LaravelHeatmap\\LaravelHeatmapServiceProvider"
]
}
},
"license": "MIT",
"autoload": {
"psr-4": {
"Blumilk\\LaravelHeatmap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blumilk\\LaravelHeatmap\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php",
"test": "./vendor/bin/phpunit tests --colors always"
},
"minimum-stability": "dev",
"prefer-stable": true
}