-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.5 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "lion/framework",
"description": "The Lion-Framework",
"type": "project",
"homepage": "https://lion-client.vercel.app/",
"keywords": [
"lion",
"framework",
"lion-framework"
],
"license": "MIT",
"autoload": {
"files": [
"app/helpers.php",
"routes/middleware.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Class\\": "database/Class/",
"Database\\Factory\\": "database/Factory/",
"Database\\Seeds\\": "database/Seeds/",
"Database\\Migrations\\": "database/Migrations/"
}
},
"autoload-dev": {
"files": [
"app/helpers.php",
"routes/middleware.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.5",
"lion/bundle": "^19.0",
"lion/mailer": "^8.0",
"symfony/mailer": "^8.0"
},
"require-dev": {
"lion/test": "^4.1",
"overtrue/phplint": "^9.5",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13.0",
"squizlabs/php_codesniffer": "^4.0"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}