-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
46 lines (46 loc) · 1.07 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
{
"name": "mydnic/laravel-feedback-component",
"description": "Open Source Feedback Interface for Laravel",
"keywords": [
"laravel",
"customer",
"feedback"
],
"license": "MIT",
"homepage": "https://github.com/mydnic/laravel-feedback-component",
"authors": [
{
"name": "Clément Rigo",
"email": "rigoclement@mydnic.be"
}
],
"require": {
"php": ">=8.0",
"laravel/framework": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^10.5",
"orchestra/testbench": "^3.7.8|^9.0",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"Mydnic\\Kustomer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mydnic\\Kustomer\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Mydnic\\Kustomer\\KustomerServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}