Skip to content

Commit

Permalink
Add support for most recent PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquemoody committed Dec 2, 2024
1 parent 308acfc commit 7d7db7a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -102,4 +105,4 @@ jobs:
run: composer check-style

- name: Run static analyse
run: composer psalm
run: composer psalm
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
},
"require-dev": {
"ext-gettext": "*",
"sokil/php-isocodes-db-i18n": "^4.0.0",
"phpunit/phpunit": ">=7.5.20",
"php-coveralls/php-coveralls": "^2.1",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^9.6",
"sokil/php-isocodes-db-i18n": "^4.0.0",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd" : "@stable",
"symfony/translation": "^4.4.17|^5.2",
"vimeo/psalm": "^4.3",
"infection/infection": ">=0.11.5"
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -53,6 +52,7 @@
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"sort-packages": true
}
}
4 changes: 2 additions & 2 deletions src/AbstractDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ abstract class AbstractDatabase implements \Iterator, \Countable
* @throws \RuntimeException when base directory not specified and directory can not be located automatically
*/
public function __construct(
string $baseDirectory = null,
TranslationDriverInterface $translationDriver = null
?string $baseDirectory = null,
?TranslationDriverInterface $translationDriver = null
) {
if (empty($baseDirectory)) {
// Require external database in "sokil/php-isocodes-db-*" packages
Expand Down
4 changes: 2 additions & 2 deletions src/IsoCodesFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class IsoCodesFactory
private $translationDriver;

public function __construct(
string $baseDirectory = null,
TranslationDriverInterface $translationDriver = null
?string $baseDirectory = null,
?TranslationDriverInterface $translationDriver = null
) {
$this->baseDirectory = $baseDirectory;
$this->translationDriver = $translationDriver ?? new GettextExtensionDriver();
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/docker-php-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ echo "uk_UA.UTF-8 UTF-8" > /etc/locale.gen
locale-gen

# run tests
/php-isocodes/vendor/bin/phpunit -c /php-isocodes/tests/phpunit.xml /php-isocodes/tests
/php-isocodes/vendor/bin/phpunit /php-isocodes/tests

0 comments on commit 7d7db7a

Please sign in to comment.