forked from uvdesk/community-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.23 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
{
"name": "uvdesk/community-skeleton",
"description": "UVDesk Community Helpdesk Project Skeleton",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.0",
"uvdesk/composer-package-manager": "0.1.*",
"symfony/flex": "^1.0",
"uvdesk/core-framework": "0.1.*",
"uvdesk/automation-bundle": "0.1.*",
"uvdesk/support-center-bundle": "0.1.*"
},
"require-dev": {
"symfony/dotenv": "^3.4",
"symfony/var-dumper": "^3.4",
"symfony/web-server-bundle": "^3.4"
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Webkul\\UVDesk\\Setup\\": "setup/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/website-skeleton": "*"
},
"minimum-stability": "dev"
}