-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.92 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
{
"name": "oneofftech/laravel-connect-identity",
"description": "Add user registration and log in via third party OAuth services",
"keywords": [
"laravel",
"registration",
"login",
"laravel-socialite",
"oauth"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alessio",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/auth": "^11.0",
"illuminate/console": "^11.0",
"illuminate/encryption": "^11.0",
"illuminate/support": "^11.0",
"illuminate/view": "^11.0",
"laravel/socialite": "^5.0",
"socialiteproviders/gitlab": "^4.0",
"socialiteproviders/dropbox": "^4.1"
},
"require-dev": {
"laravel/pint": "^1.14",
"fakerphp/faker": "^1.9.1",
"larastan/larastan": "^2.9",
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "^9.9"
},
"autoload": {
"psr-4": {
"Oneofftech\\Identities\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Oneofftech\\Identities\\Providers\\IdentitiesServiceProvider"
],
"aliases": {
"Identity": "Oneofftech\\Identities\\Facades\\Identity"
}
}
}
}