|
1 | 1 | {
|
2 | 2 | "name": "driehle/php-crypt-md5",
|
3 |
| - "type": "library", |
4 | 3 | "description": "A pure PHP implementation of an MD5-hashsum-based implementation of the crypt routine, which can be used to generate hashs for Apache's passwd files",
|
| 4 | + "license": [ |
| 5 | + "GPL-3.0+", |
| 6 | + "LGPL-3.0+" |
| 7 | + ], |
| 8 | + "type": "library", |
5 | 9 | "keywords": [
|
6 | 10 | "Crypt",
|
7 | 11 | "MD5",
|
8 | 12 | "Apache",
|
9 | 13 | "passwd",
|
10 | 14 | "htaccess"
|
11 | 15 | ],
|
12 |
| - "homepage": "https://github.com/driehle/php-crypt-md5", |
13 |
| - "license": [ |
14 |
| - "GPL-3.0+", |
15 |
| - "LGPL-3.0+" |
16 |
| - ], |
17 | 16 | "authors": [
|
18 | 17 | {
|
19 |
| - "name": "Dennis Riehle", |
| 18 | + "name": "Dennis M. Riehle", |
20 | 19 | "role": "Developer"
|
21 | 20 | }
|
22 | 21 | ],
|
| 22 | + "homepage": "https://github.com/driehle/php-crypt-md5", |
23 | 23 | "require": {
|
24 |
| - "php": ">=7.4 <8.4" |
| 24 | + "php": ">=8.1 <8.5" |
25 | 25 | },
|
26 | 26 | "require-dev": {
|
27 |
| - "ergebnis/composer-normalize": "^2.18.0", |
28 |
| - "friendsofphp/php-cs-fixer": "^3.4.0", |
29 |
| - "phpunit/phpunit": "^9.5.11" |
30 |
| - }, |
31 |
| - "extra": { |
32 |
| - "branch-alias": { |
33 |
| - "dev-master": "3.4-dev" |
34 |
| - } |
| 27 | + "ergebnis/composer-normalize": "^2.44.0", |
| 28 | + "friendsofphp/php-cs-fixer": "^3.65.0", |
| 29 | + "phpunit/phpunit": "^10.5.38" |
35 | 30 | },
|
36 | 31 | "autoload": {
|
37 | 32 | "psr-0": {
|
38 |
| - "Md5Crypt\\": "library/" |
| 33 | + "Md5Crypt\\": "src/" |
39 | 34 | }
|
40 | 35 | },
|
41 |
| - "scripts": { |
42 |
| - "cs-check": "php-cs-fixer fix --dry-run --verbose", |
43 |
| - "cs-fix": "php-cs-fixer fix --verbose", |
44 |
| - "test": "phpunit" |
45 |
| - }, |
46 | 36 | "config": {
|
47 | 37 | "allow-plugins": {
|
48 | 38 | "ergebnis/composer-normalize": true
|
49 | 39 | }
|
| 40 | + }, |
| 41 | + "scripts": { |
| 42 | + "cs-check": "php-cs-fixer fix --dry-run --verbose", |
| 43 | + "cs-fix": "php-cs-fixer fix --verbose", |
| 44 | + "test": "phpunit" |
50 | 45 | }
|
51 | 46 | }
|
0 commit comments