-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.82 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.82 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
63
64
65
66
67
{
"name": "next/simple",
"license": "Apache-2.0",
"description": "一款支持swoole/workerman/cli-server/FPM环境的PHP框架。",
"type": "project",
"keywords": [
"nextphp",
"swoole",
"workerman",
"FPM",
"flexible",
"php framework"
],
"autoload": {
"psr-4": {
"App\\": "app"
},
"files": [
"app/helpers.php"
]
},
"authors": [
{
"name": "chengyao",
"email": "chengyao0320@foxmail.com"
}
],
"require": {
"php": "^8.2",
"monolog/monolog": "^3.10.0",
"next/di": "^0.2.0",
"next/http-server": "^0.2.0",
"next/routing": "^0.2.0",
"next/utils": "^0.2.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"next/var-dumper": "^0.1",
"phpstan/phpstan": "^2.1.33",
"zircote/swagger-php": "^6.0.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-autoload-dump": [
"@rm -rf runtime/aop"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "@php ./vendor/bin/phpunit -c phpunit.xml --colors=always",
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix $1",
"analyse": "@php ./vendor/bin/phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon $1",
"swagger": [
"@php ./vendor/bin/openapi -o ./public/openapi.json ./app/Http/Controller"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}