-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.5 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
{
"name": "truckspace/laravel-walkway",
"description": "Laravel wrapper around the Truckspace ID service.",
"keywords": ["truckspace", "laravel", "auth"],
"homepage": "https://id.truckspace.group",
"license": "MIT",
"support": {
"issues": "https://github.com/truckspace/laravel-walkway/issues",
"source": "https://github.com/truckspace/laravel-walkway"
},
"authors": [
{
"name": "Ben Sherred",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"fakerphp/faker": "^1.9",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"laravel/socialite": "^5.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Truckspace\\Walkway\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Truckspace\\Walkway\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Truckspace\\Walkway\\WalkwayServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-format": "vendor/bin/phpcs src --standard=PSR12",
"format": "vendor/bin/phpcbf src --standard=PSR12"
}
}