-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.06 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": "punchlist/laravel-socialite-webflow",
"description": "A custom Webflow driver for Laravel Socialite",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Tanner Campbell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Punchlist\\SocialiteWebflow\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Punchlist\\SocialiteWebflow\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"laravel/socialite": "^5.5"
},
"extra": {
"laravel": {
"providers": [
"Punchlist\\SocialiteWebflow\\SocialiteWebflowServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/testbench package:test --no-coverage",
"pint": "vendor/bin/pint"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.11",
"nunomaduro/collision": "^6.3",
"laravel/pint": "^1.2"
}
}