-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.88 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
{
"name": "kevinpurwito/laravel-country",
"description": "Country list migration, seeders and model for Laravel",
"keywords": [
"kevinpurwito",
"countries",
"laravel"
],
"homepage": "https://github.com/kevinpurwito/laravel-country",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kevin Purwito",
"email": "kevin.purwito@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^6.19|^7.0|^8.0",
"phpunit/phpunit": "^9.0",
"psalm/plugin-laravel": "^2.0",
"rector/rector": "^0.15.2",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"Kevinpurwito\\LaravelCountry\\": "src",
"Kevinpurwito\\LaravelCountry\\Database\\Factories\\": "database/factories",
"Kevinpurwito\\LaravelCountry\\Database\\Seeders\\": "database/seeders"
}
},
"autoload-dev": {
"psr-4": {
"Kevinpurwito\\LaravelCountry\\Tests\\": "tests"
}
},
"scripts": {
"format": "php-cs-fixer fix --allow-risky=yes",
"psalm": "psalm",
"test": "phpunit --color=always",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-html coverage"
],
"test:coverage-clover": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-clover coverage/clover.xml"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Kevinpurwito\\LaravelCountry\\CountryServiceProvider"
]
}
}
}