-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.7 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": "nathandunn/laravel-countries",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nathan Dunn",
"email": "github@nathandunn.uk",
"role": "Developer",
"homepage": "https://nathandunn.uk"
}
],
"require": {
"php": ">=8.1",
"illuminate/bus": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/queue": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"nathandunn/model-repositories": "^1.0.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.0.1|^9.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ray": "^1.29"
},
"autoload": {
"psr-4": {
"NathanDunn\\Countries\\": "src",
"NathanDunn\\Countries\\Database\\Factories\\": "database/factories",
"NathanDunn\\Countries\\Database\\Seeders\\": "database/seeders"
}
},
"autoload-dev": {
"psr-4": {
"NathanDunn\\Countries\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"NathanDunn\\Countries\\CountriesServiceProvider"
]
}
}
}