-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
107 lines (106 loc) · 3.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lwwcas/laravel-countries",
"description": "A comprehensive package for managing country data in Laravel applications, including multilingual support, geographic coordinates, and detailed metadata for seamless integration with Laravel.",
"homepage": "https://lwwcas.github.io/laravel-countries/",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [{
"name": "Lucas Duarte O. Monteiro",
"email": "lwwcas@gmail.com",
"homepage": "http://www.lucasduarte.dev",
"role": "Developer"
}],
"keywords": [
"laravel",
"countries",
"geography",
"multilingual",
"coordinates",
"ISO codes",
"country data",
"laravel package",
"geolocation",
"geoJson",
"svg maps",
"world countries",
"lwwcas",
"Lucas Duarte"
],
"require": {
"php": "^8.0|^8.1|^8.2",
"laravel/framework": "^10.0|^11.0|dev-master",
"astrotomic/laravel-translatable": "^11.8",
"spatie/laravel-package-tools": "^1.16.0"
},
"require-dev": {
"doctrine/dbal": "^3.0",
"laravel/legacy-factories": "^1.0.4",
"mockery/mockery": "^1.4",
"nunomaduro/termwind": "^2.1.0",
"orchestra/testbench": "^9.4",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0"
},
"autoload": {
"psr-4": {
"Lwwcas\\LaravelCountries\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lwwcas\\LaravelCountries\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/pest",
"test-coverage": "./vendor/bin/pest --coverage",
"lint": "vendor/bin/phpstan analyse",
"format": "vendor/bin/phpcs --standard=PSR12 src/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Lwwcas\\LaravelCountries\\Providers\\WCountriesServiceProvider"
],
"aliases": {
"WCountries": "Lwwcas\\LaravelCountries\\Facades\\WCountries"
}
},
"compatibility": {
"laravel": {
"current": "10.x, 11.x",
"planned": ["12.x", "13.x"],
"untested": ["12.x", "13.x"]
}
},
"language-management": {
"default-language": "en",
"dynamic-install": true,
"supported-languages": ["ar", "nl", "en", "de", "it", "pt", "ru", "es"]
},
"features": {
"multilingual-support": "Fully supports translations for country names and metadata.",
"geographical-data": "Provides precise latitude/longitude coordinates and SVG maps for each country.",
"iso-support": "Handles ISO Alpha-2, Alpha-3, and numeric country codes with ease.",
"dynamic-language-install": "Languages can be installed or removed dynamically at any time.",
"query-scopes": "Predefined query scopes for easy access to country data.",
"country-relations": "Easily link country data to other models using foreign key relationships.",
"data-seeding": "Includes customizable seeders for automatic country data population.",
"artisan-commands": "Includes artisan commands for managing country and language data.",
"laravel-compatibility": "Supports Laravel 9.x, 10.x, 11.x, ensuring smooth integration."
}
},
"support": {
"source": "https://github.com/lwwcas/laravel-countries",
"docs": "https://github.com/lwwcas/laravel-countries/docs",
"issues": "https://github.com/lwwcas/laravel-countries/issues"
}
}