-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
64 lines (64 loc) · 2.35 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
{
"name": "auth0-samples/auth0-php-web-app",
"description": "Auth0 Integration Samples for PHP Web Applications.",
"require": {
"php": "^8.0",
"auth0/auth0-php": "^8.0",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.2",
"http-interop/http-factory-guzzle": "^1.0",
"hyperf/event": "^2.1",
"php-http/httplug": "^2.2",
"vlucas/phpdotenv": "^5.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"mockery/mockery": "^1",
"nunomaduro/larastan": "^2",
"orchestra/testbench": "^7 || ^8",
"pestphp/pest": "^2",
"pestphp/pest-plugin-laravel": "^2",
"phpstan/phpstan": "^1",
"phpstan/phpstan-strict-rules": "^1",
"psalm/plugin-laravel": "^2",
"rector/rector": "0.17.0",
"spatie/laravel-ray": "^1",
"squizlabs/php_codesniffer": "^3",
"symfony/cache": "^6",
"vimeo/psalm": "^5",
"wikimedia/composer-merge-plugin": "^2"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"friendsofphp/well-known-implementations": false,
"wikimedia/composer-merge-plugin": true,
"php-http/discovery": false,
"pestphp/pest-plugin": true
}
},
"scripts": {
"pest:coverage": "@php vendor/bin/pest --coverage --parallel --no-progress",
"pest:debug": "@php vendor/bin/pest --fail-on-risky --stop-on-defect",
"pest:profile": "@php vendor/bin/pest --profile",
"pest": "@php vendor/bin/pest --order-by random --fail-on-risky --stop-on-defect --coverage --parallel",
"phpcs:fix": "@php vendor/bin/php-cs-fixer fix",
"phpcs": "@php vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "@php vendor/bin/phpstan analyze",
"psalm:fix": "@php vendor/bin/psalter --issues=all",
"psalm": "@php vendor/bin/psalm",
"rector:fix": "@php vendor/bin/rector process src",
"rector": "@php vendor/bin/rector process src --dry-run",
"test": [
"Composer\\Config::disableProcessTimeout",
"@pest",
"@phpstan",
"@psalm",
"@rector",
"@phpcs"
]
},
"license": "MIT"
}