-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.4 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
{
"name": "atlance/jwt-auth",
"description": "Symfony JWT Authentication",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Anton Stepanov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"atlance/jwt-core": "^0.3",
"symfony/clock": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"brianium/paratest": "@dev",
"ergebnis/composer-normalize": "@dev",
"fakerphp/faker": "@dev",
"friendsofphp/php-cs-fixer": "@dev",
"overtrue/phplint": "@dev",
"phpstan/extension-installer": "@dev",
"phpstan/phpstan": "@dev",
"phpstan/phpstan-deprecation-rules": "@dev",
"phpstan/phpstan-phpunit": "@dev",
"phpstan/phpstan-strict-rules": "@dev",
"phpstan/phpstan-symfony": "@dev",
"psalm/plugin-symfony": "@dev",
"rector/rector": "@dev",
"squizlabs/php_codesniffer": "@dev",
"symfony/browser-kit": "@dev",
"symfony/framework-bundle": "^7.0",
"symfony/validator": "@dev",
"vimeo/psalm": "@dev"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Atlance\\JwtAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atlance\\JwtAuth\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-check": "vendor/bin/php-cs-fixer fix --config config/php_cs.dist.php --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --config config/php_cs.dist.php",
"php-analyze": [
"@psalm",
"@cs-check",
"@phplint",
"@phpstan"
],
"php-tests": "XDEBUG_MODE=coverage vendor/bin/paratest -c config/phpunit.xml.dist --colors --runner=WrapperRunner --coverage-clover ./coverage.xml",
"phplint": "vendor/bin/phplint -c config/phplint.yaml.dist",
"phpstan": "vendor/bin/phpstan analyse -c config/phpstan.neon.dist --no-progress --memory-limit=-1",
"psalm": "vendor/bin/psalm -c config/psalm.xml.dist --no-cache --threads=6 --memory-limit=-1 --shepherd",
"rector": "vendor/bin/rector process -c config/rector.dist.php"
}
}