-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 939 Bytes
/
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
{
"name": "driehle/php-crypt-md5",
"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",
"license": [
"GPL-3.0+",
"LGPL-3.0+"
],
"type": "library",
"keywords": [
"Crypt",
"MD5",
"Apache",
"passwd",
"htaccess"
],
"authors": [
{
"name": "Dennis M. Riehle",
"role": "Developer"
}
],
"homepage": "https://github.com/driehle/php-crypt-md5",
"require": {
"php": ">=8.1 <8.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44.0",
"friendsofphp/php-cs-fixer": "^3.65.0",
"phpunit/phpunit": "^10.5.38"
},
"autoload": {
"psr-0": {
"Md5Crypt\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --verbose",
"cs-fix": "php-cs-fixer fix --verbose",
"test": "phpunit"
}
}