forked from AidynMakhataev/laravel-surveyjs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.46 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": "fruitware/laravel-surveyjs",
"version": "1.1.0",
"description": "Up-to-date Laravel wrapper for surveyjs library",
"license": "MIT",
"authors": [
{
"name": "Serge Beresnev",
"email": "serge@fruitware.ry",
"homepage": "https://github.com/keriat"
},
{
"name": "Aidyn Makhataev",
"email": "makataev.7@gmail.com",
"homepage": "https://github.com/AidynMakhataev"
}
],
"homepage": "https://github.com/Fruitware/laravel-surveyjs",
"keywords": [
"Laravel", "LaravelSurveyJs", "surveyjs", "survey manager", "laravel survey", "survey editor", "surveyjs builder", "fruitware"
],
"require": {
"php": "^7.2",
"cviebrock/eloquent-sluggable": "*",
"illuminate/database": "6.*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"orchestra/testbench": "*"
},
"autoload": {
"psr-4": {
"Fruitware\\LaravelSurveyJS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fruitware\\LaravelSurveyJS\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Fruitware\\LaravelSurveyJS\\LaravelSurveyJsServiceProvider"
],
"aliases": {
"LaravelSurveyJs": "Fruitware\\LaravelSurveyJS\\Facades\\LaravelSurveyJs"
}
}
}
}