-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.05 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "lithephp/framework",
"description": "Lithe is a flexible and efficient PHP framework for creating robust web applications that adapt to developers' needs.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "William Humbwavali",
"homepage": "https://instagram.com/redeedite"
}
],
"autoload": {
"psr-4": {
"Lithe\\": "src/"
},
"files": [
"src/Orbis/Http/Router.php",
"src/Orbis/helpers.php"
]
},
"require": {
"php": "^8.2",
"symfony/console": "^5.0",
"lithemod/log": "^1.0",
"lithemod/flow": "^1.0",
"lithemod/import": "^1.0",
"lithemod/env": "^1.0",
"lithemod/validator": "^1.0",
"lithemod/upload": "^1.0",
"lithemod/orbis": "^1.0",
"lithemod/httpexception": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "11.2",
"mockery/mockery": "^1.6"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}