-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
127 lines (127 loc) · 3.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "auth0/symfony",
"description": "Symfony SDK for Auth0 Authentication and Management APIs.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"auth0",
"authentication",
"authorization",
"login",
"auth",
"jwt",
"json web token",
"jwk",
"json web key",
"oauth",
"openid",
"secure",
"protect",
"api"
],
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "https://auth0.com/"
}
],
"homepage": "https://github.com/auth0/symfony",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"auth0/auth0-php": "^8.11",
"symfony/cache": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"firebase/php-jwt": "^6",
"friendsofphp/php-cs-fixer": "^3",
"hyperf/event": "^2",
"mockery/mockery": "^1",
"nyholm/psr7": "^1",
"pestphp/pest": "^2",
"php-http/mock-client": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-strict-rules": "^1",
"rector/rector": "0.17.6",
"vimeo/psalm": "^5",
"wikimedia/composer-merge-plugin": "^2"
},
"suggest": {
"psr/cache-implementation": "(PSR-6 Cache) Improve performance by avoiding making redundant network requests.",
"psr/event-dispatcher-implementation": "(PSR-14 Event Dispatcher) Observe and react to events when they occur."
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Auth0\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": false,
"pestphp/pest-plugin": true,
"php-http/discovery": false,
"wikimedia/composer-merge-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"merge-plugin": {
"ignore-duplicates": false,
"include": [
"composer.local.json"
],
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false,
"recurse": true,
"replace": true
}
},
"scripts": {
"pest": [
"@putenv XDEBUG_MODE=coverage",
"@php vendor/bin/pest --colors=always --strict-global-state --fail-on-risky --fail-on-warning --coverage --strict-coverage --compact"
],
"pest:ci": [
"@pest:fast --order-by=random --no-progress"
],
"pest:fast": [
"@pest --parallel"
],
"phpcs": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"@php vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"phpcs:fix": "@php vendor/bin/php-cs-fixer fix",
"phpstan": "@php vendor/bin/phpstan analyze",
"psalm": "@php vendor/bin/psalm",
"psalm:fix": "@php vendor/bin/psalter --issues=all",
"rector": "@php vendor/bin/rector process src --dry-run",
"rector:fix": "@php vendor/bin/rector process src",
"test": [
"@pest",
"@phpstan",
"@psalm",
"@rector",
"@phpcs"
]
}
}