generated from spatie/laravel-dashboard-skeleton-tile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.67 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
{
"name": "victoravelar/laravel-dashboard-exchange-rates-tile",
"description": "It allows you to display a list of selected currencies and it's exchange rate to a base currency of your choice.",
"keywords": [
"exchange-rates",
"laravel",
"laravel-dashboard"
],
"homepage": "https://github.com/VictorAvelar/laravel-dashboard-exchange-rates-tile",
"license": "MIT",
"authors": [
{
"name": "Victor Avelar",
"email": "deltatuts@gmail.com",
"homepage": "https://victoravelar.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^7.4",
"spatie/laravel-dashboard": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"orchestra/testbench": "^7.7",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-4": {
"Avelar\\ExchangeRates\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Avelar\\ExchangeRates\\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\\ExchangeRates\\ExchangeRatesTileServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}