-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.61 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cloverphp/framework",
"description": "Clover: Clover PHP is a modern, unopinionated, and lightweight Express.js-style framework for PHP.",
"keywords": [
"clover",
"framework",
"cloverphp",
"rest",
"router"
],
"license": "MIT",
"homepage": "https://github.com/cloverphp/clover",
"support": {
"issues": "https://github.com/cloverphp/clover/issues",
"source": "https://github.com/cloverphp/clover"
},
"authors": [
{
"name": "Sushil Kumar",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"cloverphp/async": "^0.0.1",
"cloverphp/session": "^0.0.1",
"cloverphp/view": "^0.0.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"laravel/pint": "^1.25",
"pestphp/pest": "^4.1",
"phpstan/phpstan": "^2.1",
"symfony/var-dumper": "^7.3"
},
"autoload": {
"psr-4": {
"Clover\\Framework\\": "src/Framework/"
}
},
"autoload-dev":{
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false,
"carthage-software/mago": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable": true
}