-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
74 lines (74 loc) · 1.6 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fumeapp/humble",
"type": "library",
"license": "MIT",
"description": "passwordless authentication and detailed sessioning for laravel",
"keywords": [
"Laravel",
"API",
"authentication",
"passwordless",
"PHP"
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Kevin Olson",
"email": "[email protected]"
}
],
"contributors": [
"Kevin Olson <[email protected]>",
"Tanner Campbell <[email protected]>"
],
"require": {
"illuminate/support": "9.*|10.*|11.*",
"php": "^8.1",
"whichbrowser/parser": "^2.1",
"torann/geoip": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.1.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^8.0|^9.3|^10.0"
},
"autoload": {
"psr-4": {
"Fumeapp\\Humble\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fumeapp\\Humble\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Fumeapp\\Humble\\HumbleServiceProvider"
]
}
},
"scripts": {
"pint": [
"vendor/bin/pint"
],
"test": [
"./vendor/bin/testbench package:test --no-coverage"
],
"test-coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --testdox --coverage-text"
]
},
"scripts-descriptions": {
"pint": "Run the Pint Linter and Fixer.",
"test": "Run the PHPUnit tests.",
"test-coverage": "Run the PHPUnit tests with code coverage."
}
}