-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.44 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
{
"name": "beste/firebase-jwt",
"description": "A library to work with Firebase tokens",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Jérôme Gamez",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"azjezz/psl": "^2.9",
"beste/in-memory-cache": "^1.2",
"lcobucci/jwt": "^5.2",
"php-http/discovery": "^1.19.2",
"psr/cache": "^2.0 || ^3.0",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0.2",
"psr/http-message": "^2.0"
},
"require-dev": {
"beste/clock": "^3.0",
"beste/php-cs-fixer-config": "^3.1",
"friendsofphp/php-cs-fixer": "^3.45.0",
"google/auth": "^1.33",
"nyholm/psr7": "^1.8.1",
"php-standard-library/phpstan-extension": "^1.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.50",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-strict-rules": "^1.5.2",
"phpunit/phpunit": "^10.5.5",
"symfony/http-client": "^6.4.2 || ^7.0.2",
"symfony/var-dumper": "^6.4.2 || ^7.0.2",
"vlucas/phpdotenv": "^5.6"
},
"suggest": {
"psr/clock-implementation": "Allows using an existing clock, for example a frozen clock for tests",
"psr/cache-implementation": "Allows caching of certificates fetched from Google to verify tokens"
},
"autoload": {
"psr-4": {
"Beste\\Firebase\\JWT\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Beste\\Firebase\\JWT\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"analyze": "@analyse",
"cs-fix": "vendor/bin/php-cs-fixer fix --diff --verbose",
"test": "vendor/bin/phpunit --testdox",
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --coverage-html=.build/coverage"
],
"check": [
"@cs-fix",
"@analyse",
"@test"
]
}
}