Skip to content

Commit

Permalink
Revert a bunch of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquemoody committed Dec 6, 2024
1 parent e6f4349 commit 405c14f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- uses: actions/checkout@v2
Expand All @@ -35,7 +34,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Expand All @@ -61,7 +60,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.3"
php-version: "7.4"
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug

Expand Down Expand Up @@ -92,7 +91,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.3"
php-version: "7.4"
ini-values: post_max_size=256M, max_execution_time=180

- name: Install dependencies
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,19 @@
}
],
"require": {
"php": ">=7.3",
"php": ">=7.1",
"ext-json": "*"
},
"require-dev": {
"ext-gettext": "*",
"php-coveralls/php-coveralls": "^2.7",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^9.6",
"sokil/php-isocodes-db-i18n": "^4.0.0",
"squizlabs/php_codesniffer": "^3.11",
"phpunit/phpunit": ">=7.5.20",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd" : "@stable",
"symfony/translation": "^4.4.17|^5.2",
"vimeo/psalm": "^4.30"
"vimeo/psalm": "^4.3",
"infection/infection": ">=0.11.5"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -52,7 +53,6 @@
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
}
}
}
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 /php-isocodes/tests
/php-isocodes/vendor/bin/phpunit -c /php-isocodes/tests/phpunit.xml /php-isocodes/tests

0 comments on commit 405c14f

Please sign in to comment.