forked from kirkbushell/eloquence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 956 Bytes
/
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
{
"name": "xetaio/eloquence",
"description": "A set of extensions adding additional functionality and consistency to Laravel's awesome Eloquent library.",
"keywords": ["laravel", "eloquent", "camelcase", "camel", "case", "snake_case", "snake"],
"authors": [
{
"name": "Kirk Bushell",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"hashids/hashids": "^4.0",
"illuminate/database": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"illuminate/events": "^8.0 || ^9.0",
"mockery/mockery": "^1.3.0",
"orchestra/testbench": "^6.0 || ^7.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Eloquence\\": "src/",
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}