-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "tanthammar/laravel-rules",
"description": "Custom validation rules for the Laravel Framework",
"keywords": [
"tanthammar",
"laravel",
"validation",
"rules"
],
"homepage": "https://github.com/tanthammar/laravel-rules",
"license": "MIT",
"authors": [
{
"name": "Tina Hammar",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"brick/phonenumber": "^0.6.0",
"byrokrat/banking": "^2.2",
"laravel/framework": "^9.0|^10.0|^11.0",
"personnummer/personnummer": "^3.0.4",
"organisationsnummer/organisationsnummer": "^1.0.0",
"mpociot/vat-calculator": "^3.0",
"spatie/laravel-package-tools": "^1.9.2",
"tanthammar/laravel-extras": "dev-master"
},
"autoload": {
"psr-4": {
"TantHammar\\LaravelRules\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"TantHammar\\LaravelRules\\LaravelRulesServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}