-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.12 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": "timgavin/laravel-block",
"description": "A User can block another User",
"license": "MIT",
"authors": [
{
"name": "Tim Gavin",
"email": "[email protected]",
"homepage": "https://github.com/timgavin"
}
],
"homepage": "https://github.com/timgavin/laravel-block",
"keywords": [
"Laravel",
"LaravelBlock",
"Block users"
],
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~7"
},
"autoload": {
"psr-4": {
"TimGavin\\LaravelBlock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TimGavin\\LaravelBlock\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter"
},
"extra": {
"laravel": {
"providers": [
"TimGavin\\LaravelBlock\\LaravelBlockServiceProvider"
],
"aliases": {
"LaravelBlock": "TimGavin\\LaravelBlock\\Facades\\LaravelBlock"
}
}
}
}