-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.48 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
48
49
50
51
52
53
54
55
{
"name": "myth/db",
"description": "An effortless database abstraction built on top of CodeIgniter 4.",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"database"
],
"authors": [
{
"name": "Lonnie Ezell",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/lonnieezell/myth-db",
"support": {
"issues": "https://github.com/lonnieezell/myth-db/issues",
"forum": "https://github.com/lonnieezell/myth-db/discussions",
"source": "https://github.com/lonnieezell/myth-db",
"docs": "https://lonnieezell.github.io/myth-db/"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"codeigniter4/framework": "^4.3.5",
"friendsofphp/php-cs-fixer": "^3.48",
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Myth\\DB\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Support\\": "tests/_support",
"CodeIgniter\\": "vendor/codeigniter4/framework/system"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --ansi --verbose --diff --dry-run",
"cs-fix": "php-cs-fixer fix --ansi --verbose"
}
}