-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.39 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
{
"name": "upmind/provision-provider-base",
"description": "This library contains all the base interfaces, classes and logic to create provision category and provider classes, and register them for use in a laravel application.",
"type": "library",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Harry Lewis",
"email": "harry@upmind.com"
}
],
"autoload": {
"psr-4": {
"Upmind\\ProvisionBase\\": "src/"
}
},
"require": {
"php": "8.1 - 8.3",
"guzzlehttp/guzzle": "^6.3||^7.0",
"illuminate/console": "^6.20 || ^10.0",
"illuminate/support": "^6.20 || ^10.0",
"illuminate/validation": "^6.20 || ^10.0",
"league/iso3166": "^3.0 || ^4.0",
"propaganistas/laravel-phone": "^4.2||^5.0",
"psr/log": "^1.1||^2.0||^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0"
},
"extra": {
"laravel": {
"providers": [
"Upmind\\ProvisionBase\\Laravel\\ValidationServiceProvider",
"Upmind\\ProvisionBase\\Laravel\\ConsoleServiceProvider",
"Propaganistas\\LaravelPhone\\PhoneServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}