-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 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
{
"name" : "cartbeforehorse/cbh-model",
"description" : "Extending and combining all the best vendor extensions to Eloquent Models",
"keywords" : ["laravel", "eloquent", "model", "validation", "dual-pk", "finite-state-machine", "fsm"],
"type" : "library",
"license" : "MIT",
"authors": [
{
"name": "Osian ap Garth",
"email": "[email protected]"
}
],
"repositories" : [{
"type" : "vcs",
"url" : "https://github.com/cartbeforehorse/cbh-validation.git"
}],
"require": {
"php" : ">=8.0",
"watson/validating" : ">=7",
"sebdesign/laravel-state-machine" : ">=3",
"cartbeforehorse/cbh-validation" : ">=0.0.1",
"yajra/laravel-oci8" : ">=9"
},
"require-dev": {
"phpunit/phpunit" : "^9.3.3"
},
"autoload": {
"psr-4": {
"Cartbeforehorse\\DbModels\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"./../cbh-validation"
],
"exclude-from-classmap": [
"vendor/cartbeforehorse/cbh-validation"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}