-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·52 lines (52 loc) · 1.01 KB
/
composer.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.01 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
{
"name": "kphcdr/ppphp",
"type": "framework",
"description": "PPPHP Framework",
"keywords": [
"PHP framework"
],
"homepage": "http://ppphp.kphcdr.com",
"license": "MIT",
"require": {
"php": ">=7.1.3",
"twig/twig": "~1.0",
"kphcdr/crypt": "^1.0",
"monolog/monolog": "^1.23",
"vlucas/phpdotenv": "^2.4",
"topthink/think-orm": "^1.2",
"filp/whoops": "^2.3",
"symfony/var-dumper": "^4.2",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"files": [
"core/init.php"],
"psr-4": {
"ppphp\\": "core/ppphp",
"app\\": "app"
}
},
"authors": [
{
"name": "Kphcdr",
"email": "kphcdr@163.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
},
{
"packagist": false
}
],
"require-dev": {
"symfony/console": "^4.2"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}