-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
108 lines (108 loc) · 3.06 KB
/
Copy pathcomposer.json
File metadata and controls
108 lines (108 loc) · 3.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "opendialogai/opendialog",
"type": "project",
"description": "OpenDialog Demonstration App",
"license": "Apache-2.0",
"require": {
"php": "^7.1.3",
"app/message-builder": "*",
"app/revisionviewer": "*",
"carlson/nova-link-field": "^1.0",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.8.*",
"laravel/nova": "~2.0",
"laravel/tinker": "^1.0",
"opendialogai/core": "^0.4",
"opendialogai/webchat": "^0.4",
"phalcongelist/php-diff": "^2.0",
"spatie/laravel-cors": "^1.3",
"timothyasp/nova-color-field": "^1.0",
"opendialogai/nova-conversation-log": "dev-s6/feature/opendialog",
"doctrine/dbal": "^2.9"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-install-cmd": [
"@php artisan vendor:publish --tag=scripts --force",
"@php artisan vendor:publish --tag=dgraph --force"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=scripts --force",
"@php artisan vendor:publish --tag=dgraph --force"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opendialogai/core.git"
},
{
"type": "vcs",
"url": "https://github.com/opendialogai/webchat.git"
},
{
"type": "vcs",
"url": "https://github.com/opendialogai/nova-conversation-log.git"
},
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "path",
"url": "./nova-components/MessageBuilder"
},
{
"type": "path",
"url": "./nova-components/MessageType"
},
{
"type": "path",
"url": "./nova-components/RevisionViewer"
}
]
}