-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 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
53
54
55
56
57
58
59
{
"name": "webhappens/questions",
"description": "A Laravel 5.6 package to help you collect user feedback about your app",
"keywords": [
"webhappens",
"questions",
"feedback",
"insight",
"ux"
],
"homepage": "/~https://github.com/webhappens/questions",
"license": "MIT",
"authors": [
{
"name": "Ben Gurney",
"email": "ben@webhappens.co.uk",
"homepage": "https://webhappens.co.uk",
"role": "Developer"
}
],
"require": {
"epartment/nova-dependency-container": "^1.1",
"glenscott/url-normalizer": "^1.4",
"spatie/url": "^1.3"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.3"
},
"autoload": {
"classmap": [
"database/factories"
],
"psr-4": {
"WebHappens\\Questions\\": "src",
"WebHappens\\Questions\\Seeds\\": "database/seeds",
"WebHappens\\Questions\\Nova\\": "nova/src"
}
},
"autoload-dev": {
"psr-4": {
"WebHappens\\Questions\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"WebHappens\\Questions\\QuestionsServiceProvider"
]
}
}
}