-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.61 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": "pod-point/i18n",
"description": "A package of useful components for internationalisation in Laravel applications.",
"keywords": ["laravel", "i18n", "internationalisation", "tax", "currencies", "markets", "languages", "countries"],
"homepage": "https://github.com/pod-point/countries",
"license": "MIT",
"authors": [
{
"name": "Pod Point Software Team",
"email": "software@pod-point.com"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/config": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/view": "^7.0|^8.0",
"illuminate/filesystem": "^7.0|^8.0",
"league/iso3166": "^3.0",
"guzzlehttp/guzzle": "^6.3.1|^7.0.1",
"mpociot/vat-calculator": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5.8|^9.3.3"
},
"autoload": {
"psr-4": {
"PodPoint\\I18n\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"PodPoint\\I18n\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PodPoint\\I18n\\CountriesServiceProvider"
],
"dont-discover": [
"mpociot/vat-calculator"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}