-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (80 loc) · 2.08 KB
/
composer.json
File metadata and controls
81 lines (80 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "microphp/microphp",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "app/",
"MicroPHP\\Framework\\": "framework/"
},
"files": [
"framework/functons.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "liutao",
"email": "gg.cn.lt@gmail.com"
}
],
"require": {
"php": ">=8.0",
"microphp/data": "dev-master",
"microphp/contract": "dev-master",
"microphp/swagger": "dev-master",
"microphp/workerman": "dev-master",
"microphp/swoole": "dev-master",
"cycle/orm": "^2.10",
"cycle/annotated": "^4.2",
"cycle/entity-behavior": "^1.4",
"guzzlehttp/psr7": "^2.6",
"league/container": "^4.0",
"league/route": "^5.0",
"symfony/console": "^6",
"symfony/process": "^6",
"symfony/finder": "^6",
"guzzlehttp/guzzle": "^7.7",
"symfony/dotenv": "^6.0",
"monolog/monolog": "^3.4",
"ext-simplexml": "*",
"symfony/validator": "^7.2",
"bramus/monolog-colored-line-formatter": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22.0",
"phpunit/phpunit": "^10.2",
"symfony/var-dumper": "^6"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"cs": [
"./vendor/bin/php-cs-fixer fix --verbose"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"microphp/data": {
"type": "path",
"url": "../data"
},
"microphp/swoole": {
"type": "path",
"url": "../swoole"
},
"microphp/swagger": {
"type": "path",
"url": "../swagger"
},
"microphp/workerman": {
"type": "path",
"url": "../workerman"
}
}
}