Skip to content

Commit

Permalink
Merge pull request #4 from driehle/feat/php8.4
Browse files Browse the repository at this point in the history
Drop PHP 7.4 and 8.1, add PHP 8.4
  • Loading branch information
driehle authored Nov 28, 2024
2 parents 3823b7c + 55e9104 commit 80bbbbd
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 24 deletions.
6 changes: 4 additions & 2 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
->in(__DIR__ . '/library/')
->in(__DIR__ . '/src/')
->in(__DIR__ . '/tests/');

return (new PhpCsFixer\Config())
Expand All @@ -15,7 +15,9 @@
'@PSR2' => true,
'@Symfony' => true,
'@DoctrineAnnotation' => true,
'@PHP74Migration' => true,
'@PHP74Migration' => true,
'@PHP80Migration' => true,
'@PHP81Migration' => true,
'align_multiline_comment' => ['comment_type' => 'phpdocs_like'],
'concat_space' => ['spacing' => 'one'],
'echo_tag_syntax' => ['format' => 'long'],
Expand Down
39 changes: 17 additions & 22 deletions composer.json
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.

0 comments on commit 80bbbbd

Please sign in to comment.