-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.72 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
{
"name": "kuhdo/laravel-auth0-migrator",
"description": "Convert your users database to auth0.",
"license": "MIT",
"keywords": [
"auth0",
"oauth",
"management api",
"Laravel",
"bulk user import"
],
"authors": [
{
"name": "Arne Bartelt",
"email": "dev@kuhdo.de",
"homepage": "https://kuhdo.de"
}
],
"homepage": "https://github.com/kuhdo/laravel-auth0-migrator",
"require": {
"auth0/auth0-php": "^8.1",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/support": "~8|~9|~10",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"phpunit/phpunit": "~9.5"
},
"autoload": {
"psr-4": {
"KUHdo\\LaravelAuth0Migrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KUHdo\\LaravelAuth0Migrator\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"aliases": {
"Auth0Migrator": "Auth0Migrator",
"LaravelAuth0Migrator": "Auth0Migrator"
},
"providers": [
"KUHdo\\LaravelAuth0Migrator\\LaravelAuth0MigratorServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"test": "./vendor/bin/pest"
}
}