-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.17 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
{
"name": "oluwatobiakanji/laravel-modulr-auth",
"description": "Laravel 9 package to generate authentication headers for Modulr Finance",
"license": "MIT",
"authors": [
{
"name": "Oluwatobi Akanji",
"email": "akanjioluwatobishadrach@yahoo.com"
}
],
"autoload": {
"psr-4": {
"OluwatobiAkanji\\ModulrAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OluwatobiAkanji\\ModulrAuth\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "~6|~7|~8|~9",
"orchestra/testbench": "^7.0",
"illuminate/contracts": "~6|~7|~8|~9"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"OluwatobiAkanji\\ModulrAuth\\ModulrAuthServiceProvider"
],
"aliases": {
"AuthHeader": "OluwatobiAkanji\\ModulrAuth\\Facades\\AuthHeader"
}
}
}
}