Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop PHP 7.4 and 8.1, add PHP 8.4 #4

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.