|
1 | 1 | { |
2 | | - "name": "lm-commons/repository-template", |
3 | | - "description": "Repository template", |
| 2 | + "name": "lm-commons/lmc-api-auth", |
| 3 | + "description": "API tools to authenticate requests", |
4 | 4 | "license": "BSD-3-Clause", |
5 | 5 | "authors": [ |
6 | 6 | { |
7 | | - "name": "Firstname Lastname", |
8 | | - "email": "email@example.com" |
| 7 | + "name": "Eric Richer", |
| 8 | + "email": "eric.richer@vistoconsulting.com" |
9 | 9 | } |
10 | 10 | ], |
11 | 11 | "require": { |
12 | | - "php": "~8.2.0 || ~8.3.0 || ~8.4.0" |
| 12 | + "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", |
| 13 | + "laminas/laminas-authentication": "^2.13", |
| 14 | + "psr/http-server-handler": "^1.0", |
| 15 | + "psr/http-server-middleware": "^1.0", |
| 16 | + "psr/container": "^1.1 || ^2.0" |
13 | 17 | }, |
14 | 18 | "require-dev": { |
15 | 19 | "laminas/laminas-coding-standard": "^3.1", |
16 | | - "phpunit/phpunit": "^11.5", |
| 20 | + "phpunit/phpunit": "11.5.48", |
17 | 21 | "psalm/plugin-phpunit": "^0.19.5", |
18 | | - "vimeo/psalm": "^6.10" |
| 22 | + "vimeo/psalm": "6.14.3", |
| 23 | + "amphp/parallel": "^2.3.3", |
| 24 | + "amphp/dns": "^2.4.0", |
| 25 | + "amphp/socket": "^2.3.1" |
19 | 26 | }, |
20 | 27 | "autoload": { |
21 | | - |
| 28 | + "psr-4": { |
| 29 | + "Lmc\\Api\\Auth\\": "src/" |
| 30 | + } |
22 | 31 | }, |
23 | 32 | "autoload-dev": { |
24 | | - |
| 33 | + "psr-4": { |
| 34 | + "LmcTest\\Api\\Auth\\": "test/" |
| 35 | + } |
| 36 | + }, |
| 37 | + "extra": { |
| 38 | + "laminas": { |
| 39 | + "config-provider": "Lmc\\Api\\Auth\\ConfigProvider" |
| 40 | + } |
25 | 41 | }, |
26 | 42 | "config": { |
27 | 43 | "allow-plugins": { |
|
0 commit comments