-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
35 lines (35 loc) · 885 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
33
34
35
{
"name": "agungsugiarto/codeigniter4-eloquent",
"description": "The Illuminate Database package for CodeIgniter 4",
"keywords": ["codegniter4", "codeigniter4-eloquent", "database", "orm", "sql"],
"license": "MIT",
"authors": [
{
"name": "agungsugiarto",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"codeigniter4/framework": "^4.1",
"illuminate/database": "^8.83",
"illuminate/pagination": "^8.83",
"illuminate/events": "^8.83"
},
"autoload": {
"psr-4": {
"Fluent\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always -vvv"
}
}