|
1 | 1 | {
|
2 | 2 | "name": "benjaminfavre/oauth2-http-client",
|
3 | 3 | "description": "A lightweight OAuth 2 decorator for the Symfony HTTP Client.",
|
4 |
| - "keywords": ["symfony", "oauth", "http-client"], |
5 |
| - "homepage": "https://github.com/BenjaminFavre/oauth2-http-client", |
6 | 4 | "license": "Apache-2.0",
|
| 5 | + "keywords": [ |
| 6 | + "symfony", |
| 7 | + "oauth", |
| 8 | + "http-client" |
| 9 | + ], |
7 | 10 | "authors": [
|
8 | 11 | {
|
9 | 12 | "name": "Benjamin Favre",
|
10 | 13 |
|
11 | 14 | "homepage": "https://github.com/BenjaminFavre"
|
12 | 15 | }
|
13 | 16 | ],
|
14 |
| - "autoload": { |
15 |
| - "psr-4": {"BenjaminFavre\\OAuthHttpClient\\": "src/"} |
16 |
| - }, |
| 17 | + "homepage": "https://github.com/BenjaminFavre/oauth2-http-client", |
17 | 18 | "require": {
|
18 |
| - "php": "^8.0.0", |
| 19 | + "php": "^8.0", |
19 | 20 | "ext-json": "*",
|
20 |
| - "symfony/http-client-contracts": "^3.0", |
21 |
| - "symfony/cache-contracts": "^3.0" |
22 |
| - }, |
23 |
| - "provide": { |
24 |
| - "symfony/http-client-implementation": "^2.3.1" |
| 21 | + "symfony/cache-contracts": "^3.0", |
| 22 | + "symfony/http-client-contracts": "^3.0" |
25 | 23 | },
|
26 | 24 | "require-dev": {
|
| 25 | + "ergebnis/composer-normalize": "^2.28", |
| 26 | + "phpstan/phpstan": "^0.12.64", |
27 | 27 | "phpunit/phpunit": "^9.4.3",
|
28 | 28 | "symfony/cache": "^6.0",
|
29 |
| - "symfony/http-client": "^6.0", |
30 |
| - "phpstan/phpstan": "^0.12.64" |
| 29 | + "symfony/http-client": "^6.0" |
| 30 | + }, |
| 31 | + "provide": { |
| 32 | + "symfony/http-client-implementation": "^2.3.1" |
| 33 | + }, |
| 34 | + "autoload": { |
| 35 | + "psr-4": { |
| 36 | + "BenjaminFavre\\OAuthHttpClient\\": "src/" |
| 37 | + } |
| 38 | + }, |
| 39 | + "config": { |
| 40 | + "allow-plugins": { |
| 41 | + "ergebnis/composer-normalize": true |
| 42 | + } |
31 | 43 | },
|
32 | 44 | "scripts": {
|
33 | 45 | "phpstan": "vendor/bin/phpstan analyse --level max src tests"
|
|
0 commit comments