-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.41 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
{
"name": "hans-thomas/sphinx",
"description": "Json web token driver for laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mortazavi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"matomo/device-detector": "^6.0",
"lcobucci/jwt": "^4.1"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"nunomaduro/collision": "^7.0",
"hans-thomas/horus": "^1.0"
},
"autoload": {
"psr-4": {
"Hans\\Sphinx\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Hans\\Sphinx\\Tests\\": "tests/",
"App\\": "tests/skeleton/laravel-10.x/app",
"Database\\Factories\\": "tests/skeleton/laravel-10.x/database/factories"
}
},
"extra": {
"laravel": {
"providers": [
"Hans\\Sphinx\\SphinxServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"testbench": "./vendor/bin/testbench",
"test": "./vendor/bin/phpunit",
"test:testbench": "./vendor/bin/testbench package:test",
"test:coverage": "./vendor/bin/phpunit --coverage-clover ./coverage.xml"
}
}