-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
62 lines (62 loc) · 1.71 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tiderjian/qscmf",
"description": "qscmf",
"type": "cmf",
"keywords": ["thinkphp", "admin", "grid", "form"],
"license": "MIT",
"authors": [
{
"name": "tiderjian",
"email": "tider_yatsen@hotmail.com"
}
],
"require": {
"tiderjian/think-core": "^13.0",
"funkjedi/composer-include-files": "^1.0",
"quansitech/qscmf-utils": "^1.5",
"quansitech/qscmf-formitem-ueditor": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3.0",
"laravel/dusk": "^6.9.0",
"mockery/mockery": "^1.2",
"fakerphp/faker": "^1.10.0"
},
"extra": {
"include_files": [
"vendor/tiderjian/think-core/src/Common/functions.php",
"vendor/tiderjian/think-core/src/Library/Qscmf/Helper/function.php"
]
},
"autoload": {
"classmap": [
"lara\/database\/seeds",
"lara\/database\/factories"
],
"psr-4": {
"Lara\\": "lara",
"App\\": "lara\/app"
}
},
"autoload-dev": {
"psr-4": {
"Lara\\Tests\\":"lara\/tests"
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"./vendor/bin/qsinstall",
"./vendor/bin/qsautoload",
"@php artisan package:discover --ansi",
"@php artisan qscmf:discover --ansi",
"@php ./www/index.php /qscmf/createSymlink"
]
},
"config": {
"allow-plugins": {
"easywechat-composer/easywechat-composer": true,
"funkjedi/composer-include-files": true
}
}
}