-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.04 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
{
"name" : "somemove/auth0-nette-extension",
"description": "Auth0 Nette Extension",
"keywords": [
"php",
"nette",
"auth0",
"extension",
"di"
],
"type" : "library",
"license": "MIT",
"authors": [
{
"name": "Josef Petrak",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/somemove/auth0-nette-extension/issues",
"email": "[email protected]"
},
"require": {
"php": ">=8.1",
"nette/di": "^3.0",
"nette/http" : "^3.1",
"auth0/auth0-php": "^8.2",
"php-http/guzzle7-adapter": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "*",
"phpstan/phpstan-nette": "*",
"spaze/phpstan-disallowed-calls": "*",
"php-parallel-lint/php-parallel-lint": "*",
"php-parallel-lint/php-console-color": "*",
"php-parallel-lint/php-console-highlighter": "*",
"php-parallel-lint/php-var-dump-check": "*",
"friendsofphp/php-cs-fixer": "*"
},
"autoload": {
"psr-4": {
"Somemove\\Auth0NetteExtesion\\": "src/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}