-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from driehle/feat/php8.4
Drop PHP 7.4 and 8.1, add PHP 8.4
- Loading branch information
Showing
3 changed files
with
21 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,46 @@ | ||
{ | ||
"name": "driehle/php-crypt-md5", | ||
"type": "library", | ||
"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" | ||
], | ||
"homepage": "https://github.com/driehle/php-crypt-md5", | ||
"license": [ | ||
"GPL-3.0+", | ||
"LGPL-3.0+" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Dennis Riehle", | ||
"name": "Dennis M. Riehle", | ||
"role": "Developer" | ||
} | ||
], | ||
"homepage": "https://github.com/driehle/php-crypt-md5", | ||
"require": { | ||
"php": ">=7.4 <8.4" | ||
"php": ">=8.1 <8.5" | ||
}, | ||
"require-dev": { | ||
"ergebnis/composer-normalize": "^2.18.0", | ||
"friendsofphp/php-cs-fixer": "^3.4.0", | ||
"phpunit/phpunit": "^9.5.11" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "3.4-dev" | ||
} | ||
"ergebnis/composer-normalize": "^2.44.0", | ||
"friendsofphp/php-cs-fixer": "^3.65.0", | ||
"phpunit/phpunit": "^10.5.38" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"Md5Crypt\\": "library/" | ||
"Md5Crypt\\": "src/" | ||
} | ||
}, | ||
"scripts": { | ||
"cs-check": "php-cs-fixer fix --dry-run --verbose", | ||
"cs-fix": "php-cs-fixer fix --verbose", | ||
"test": "phpunit" | ||
}, | ||
"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" | ||
} | ||
} |
File renamed without changes.