-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
executable file
·72 lines (72 loc) · 1.79 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
{
"name": "galahad/laravel-addressing",
"description": "Laravel package providing addressing functionality",
"keywords": [
"laravel",
"address",
"addressing",
"validation",
"countries"
],
"type": "library",
"homepage": "https://github.com/glhd/laravel-addressing",
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://github.com/inxilpro"
},
{
"name": "Junior Grossi",
"email": "[email protected]",
"homepage": "http://github.com/jgrossi"
}
],
"require": {
"php": ">=7.4",
"illuminate/contracts": "^v7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/support": "^v7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/http": "^v7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/routing": "^v7|^8|^9|^10|^11|12.x-dev|dev-master",
"illuminate/validation": "^v7|^8|^9|^10|^11|12.x-dev|dev-master",
"commerceguys/addressing": "^v1.2",
"symfony/intl": "^v4.2|^v5.0|^v6.0|^7.0",
"commerceguys/intl": "^v1.1",
"doctrine/collections": "^1.6.2"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9.5|^10",
"orchestra/testbench": "^5.20|^6.24|^7.10|^8|9.x-dev|10.x-dev|dev-master",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Galahad\\LaravelAddressing\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Galahad\\LaravelAddressing\\Tests\\": "tests/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"Galahad\\LaravelAddressing\\Support\\AddressingServiceProvider"
],
"aliases": {
"Addressing": "Galahad\\LaravelAddressing\\Support\\Facades\\Addressing"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}