generated from spatie/laravel-dashboard-skeleton-tile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.68 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
{
"name": "victoravelar/laravel-dashboard-football-data-advanced",
"description": "Laravel dashboard tiles to display matches, results, standings and more football data stats.",
"keywords": [
"victoravelar",
"laravel-dashboard-football-data-advanced",
"laravel-dashboard",
"laravel-dashboard-tile",
"football-data",
"standings"
],
"homepage": "https://github.com/VictorAvelar/laravel-dashboard-football-data-advanced",
"license": "MIT",
"authors": [
{
"name": "Victor Avelar",
"email": "[email protected]",
"homepage": "https://victoravelar.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^7.4",
"spatie/laravel-dashboard": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-4": {
"Avelar\\FootballDataAdvanced\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Avelar\\FootballDataAdvanced\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"check-style": "phpcs src --ignore=tests/*",
"fix-style": "phpcbf src --ignore=tests/*"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Avelar\\FootballDataAdvanced\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}