forked from kirkbushell/eloquence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.04 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
{
"name": "kirkbushell/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": "^8.1",
"hashids/hashids": "^4.1",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"illuminate/events": "^10.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"Eloquence\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always"
},
"minimum-stability": "dev",
"prefer-stable": true
}