-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 995 Bytes
/
composer.json
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
{
"name": "everforge/think-constant",
"description": "Support Constant with Exception handle",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"EverForge\\ThinkConstant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EverForge\\ThinkConstant\\Tests\\": "tests/"
},
"files": [
"vendor/topthink/framework/src/helper.php"
]
},
"authors": [
{
"name": "JackyChen",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"topthink/framework": ">=v6.0.0",
"topthink/think-cache": "^2.0",
"pestphp/pest": "^1.23",
"friendsofphp/php-cs-fixer": "^3.4"
},
"config": {
"allow-plugins": {
"topthink/think-installer": true,
"pestphp/pest-plugin": true
}
},
"require": {
"ext-reflection": "*",
"php": "^7.2"
},
"extra": {
"think": {
"services": [
"EverForge\\ThinkConstant\\Service"
]
}
}
}