Skip to content

Commit

Permalink
Merge pull request diablomedia#116 from diablomedia/php-81
Browse files Browse the repository at this point in the history
testing php 8.1
  • Loading branch information
jaydiablo authored Dec 4, 2021
1 parent 3404b73 commit 780266f
Show file tree
Hide file tree
Showing 16 changed files with 129 additions and 83 deletions.
34 changes: 10 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,14 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.2', '7.3', '7.4']
php-versions: ['7.4', '8.0', '8.1']
composer-args: ['', '--prefer-lowest']
include:
- operating-system: ubuntu-latest
php-versions: '8.0'
composer-args: '--ignore-platform-reqs --no-scripts'
- operating-system: ubuntu-latest
php-versions: '8.0'
composer-args: '--prefer-lowest --ignore-platform-reqs --no-scripts'
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
- name: Setup PHP
uses: shivammathur/setup-php@2.10.0
uses: shivammathur/setup-php@2.16.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring
Expand All @@ -39,7 +32,7 @@ jobs:
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/[email protected].4
uses: actions/[email protected].7
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: php${{ matrix.php-versions }}-composer-${{ matrix.composer-args }}-${{ hashFiles('**/composer.json') }}
Expand All @@ -50,21 +43,14 @@ jobs:
- name: PHPStan
run: composer phpstan
- name: Code Style Check
env:
PHP_CS_FIXER_IGNORE_ENV: true
run: composer style-check -- --format=checkstyle | cs2pr
- name: Test
run: composer test-with-coverage
- name: Upload Coverage
run: bash <(curl -s https://codecov.io/bash) -f ./clover.xml
merge-me:
name: Merge me!
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@master
uses: codecov/codecov-action@v2
with:
# This must be used as GitHub Actions token does not support
# pushing to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_LOGIN: 'dependabot[bot]'
files: ./clover.xml
fail_ci_if_error: true
verbose: true
32 changes: 32 additions & 0 deletions .github/workflows/merge-me.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Merge me!

on:
workflow_run:
types:
- completed
workflows:
- 'Build'

jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Merge me!
uses: ridedott/merge-me-action@v2
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
# a protected branch must be used. This secret can have an arbitrary
# name, as an example, this repository uses `DOTTBOTT_TOKEN`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support pushing
# to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ENABLE_GITHUB_API_PREVIEW: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
/tests/Zend/Translate/Adapter/_files/zend_cache*
.php_cs.cache
.phpunit.result.cache
.php-cs-fixer.cache
9 changes: 4 additions & 5 deletions .php_cs → .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@
->in(__DIR__)
;

return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
$config = new PhpCsFixer\Config();
return $config->setRiskyAllowed(true)
->setRules(array(
'@PSR2' => true,
'@PHPUnit60Migration:risky' => true,
'@PHPUnit84Migration:risky' => true,
'binary_operator_spaces' => array('align_double_arrow' => true, 'align_equals' => true),
'binary_operator_spaces' => array('operators' => array('=' => 'align', '=>' => 'align')),
'single_quote' => true,
'array_syntax' => array('syntax' => 'long'),
'concat_space' => array('spacing' => 'one'),
'psr0' => false
'psr_autoloading' => array('dir' => 'src'),
))
->setUsingCache(true)
->setFinder($finder);
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"require": {
"php": "^7.0 || ^8.0",
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"diablomedia/zendframework1-exception": "^1.0.0",
"diablomedia/zendframework1-config": "^1.0.0 || ^2.0.0",
"diablomedia/zendframework1-loader": "^1.0.0",
Expand All @@ -32,11 +32,11 @@
}
},
"require-dev": {
"phpunit/phpunit": "^8.5.14 || ^9.0.0",
"phpstan/phpstan": "0.12.82",
"friendsofphp/php-cs-fixer": "2.18.4",
"maglnet/composer-require-checker": "^1.1.0 || ^2.0.0 || ^3.0.0",
"phpro/grumphp-shim": "^0.22.0 || ^1.1"
"phpunit/phpunit": "^9.5.10",
"phpstan/phpstan": "1.2.0",
"friendsofphp/php-cs-fixer": "3.3.2",
"maglnet/composer-require-checker": "^3.0.0",
"phpro/grumphp-shim": "^1.5.0"
},
"include-path": [
"src/"
Expand All @@ -49,7 +49,7 @@
"scripts": {
"test": "phpunit",
"test-with-coverage": "phpunit --coverage-clover=clover.xml",
"phpstan": "phpstan analyze -c phpstan.neon --no-progress --ansi",
"phpstan": "phpstan analyze -c phpstan.neon --no-progress --ansi --memory-limit=768M",
"style-check": "php-cs-fixer fix --dry-run -vv"
},
"suggest": {
Expand Down
3 changes: 2 additions & 1 deletion grumphp.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ grumphp:
config_file: require-checker-config.json
phpcsfixer2:
allow_risky: true
config: .php_cs
config: .php-cs-fixer.php
phpstan:
configuration: phpstan.neon
memory_limit: 768M
phpunit:
metadata:
priority: 100
Expand Down
60 changes: 52 additions & 8 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ parameters:
level: 4
paths:
- ./
excludes_analyse:
excludePaths:
- %rootDir%/../../../vendor/*
- %rootDir%/../../../tests/*
ignoreErrors:
Expand All @@ -14,15 +14,59 @@ parameters:
- '#PHPDoc tag @param references unknown parameter: \$locale#'
- '#PHPDoc tag @param references unknown parameter: \$args#'
-
message: '#Offset .+ does not exist on array\(.+\)\.#'
path: %currentWorkingDirectory%/src/Zend/Translate/Adapter.php
message: '#Offset .+ does not exist on array{.+}\.#'
path: ./src/Zend/Translate/Adapter.php
-
message: '#If condition is always false\.#'
path: %currentWorkingDirectory%/src/Zend/Translate/Adapter.php
message: '#Offset string on array{} in isset\(\) does not exist\.#'
path: ./src/Zend/Translate/Adapter/Array.php
-
message: '#Strict comparison using !== between true and true will always evaluate to false\.#'
path: %currentWorkingDirectory%/src/Zend/Translate/Adapter.php
message: '#Offset string on array{} in isset\(\) does not exist\.#'
path: ./src/Zend/Translate/Adapter/Ini.php
-
message: '#Offset .+ on array{.+} in empty\(\) does not exist\.#'
path: ./src/Zend/Translate/Adapter.php
# Defensive coding, argument can be multiple types
-
message: '#Result of \|\| is always true\.#'
path: %currentWorkingDirectory%/src/Zend/Translate/Adapter.php
path: ./src/Zend/Translate/Adapter.php
# These are used through some xml methods
-
message: '#Method Zend_Translate_Adapter_Qt::_startElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Qt.php
-
message: '#Method Zend_Translate_Adapter_Qt::_endElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Qt.php
-
message: '#Method Zend_Translate_Adapter_Qt::_contentElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Qt.php
-
message: '#Method Zend_Translate_Adapter_Tbx::_startElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Tbx.php
-
message: '#Method Zend_Translate_Adapter_Tbx::_endElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Tbx.php
-
message: '#Method Zend_Translate_Adapter_Tbx::_contentElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Tbx.php
-
message: '#Method Zend_Translate_Adapter_Xliff::_startElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Xliff.php
-
message: '#Method Zend_Translate_Adapter_Xliff::_endElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Xliff.php
-
message: '#Method Zend_Translate_Adapter_Xliff::_contentElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/Xliff.php
-
message: '#Method Zend_Translate_Adapter_XmlTm::_startElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/XmlTm.php
-
message: '#Method Zend_Translate_Adapter_XmlTm::_endElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/XmlTm.php
-
message: '#Method Zend_Translate_Adapter_XmlTm::_contentElement\(\) is unused\.#'
path: ./src/Zend/Translate/Adapter/XmlTm.php
# This isn't true, there is an empty check on this property in the class
-
message: '#Property Zend_Translate_Adapter_Tmx::\$_useId is never read, only written\.#'
path: ./src/Zend/Translate/Adapter/Tmx.php
30 changes: 12 additions & 18 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
<phpunit
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
backupGlobals="true"
stderr="true"
colors="true">
<testsuites>
<testsuite name="default">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" beStrictAboutTestsThatDoNotTestAnything="true" backupGlobals="true" stderr="true" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="default">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>
4 changes: 2 additions & 2 deletions src/Zend/Translate/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ public function _($messageId, $locale = null)
* returns boolean
*
* @param string|int $messageId Translation string
* @param boolean $original (optional) Allow translation only for original language
* @param boolean|null $original (optional) Allow translation only for original language
* when true, a translation for 'en_US' would give false when it can
* be translated with 'en' only
* @param string|Zend_Locale $locale (optional) Locale/Language to use, identical with locale identifier,
Expand All @@ -858,7 +858,7 @@ public function _($messageId, $locale = null)
*/
public function isTranslated($messageId, $original = false, $locale = null)
{
if (($original !== false) and ($original !== true)) {
if (($original !== false) && ($original !== true)) {
$locale = $original;
$original = false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Zend/Translate/Adapter/Csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected function _loadTranslationData($filename, $locale, array $options = arr
}

while (($data = fgetcsv($this->_file, $options['length'], $options['delimiter'], $options['enclosure'])) !== false) {
if (substr($data[0], 0, 1) === '#') {
if (substr($data[0] ?? '', 0, 1) === '#') {
continue;
}

Expand Down
6 changes: 1 addition & 5 deletions src/Zend/Translate/Adapter/Qt.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ class Zend_Translate_Adapter_Qt extends Zend_Translate_Adapter
{
// Internal variables
private $_file = false;
private $_cleared = array();
private $_transunit = null;
private $_source = null;
private $_target = null;
private $_scontent = null;
private $_tcontent = null;
Expand Down Expand Up @@ -92,7 +89,6 @@ private function _startElement($file, $name, $attrib)
{
switch (strtolower($name)) {
case 'message':
$this->_source = null;
$this->_stag = false;
$this->_ttag = false;
$this->_scontent = null;
Expand Down Expand Up @@ -142,7 +138,7 @@ private function _contentElement($file, $data)

private function _findEncoding($filename)
{
$file = file_get_contents($filename, null, null, 0, 100);
$file = file_get_contents($filename, false, null, 0, 100);
if (strpos($file, 'encoding') !== false) {
$encoding = substr($file, strpos($file, 'encoding') + 9);
$encoding = substr($encoding, 1, strpos($encoding, $encoding[0], 1) - 1);
Expand Down
3 changes: 1 addition & 2 deletions src/Zend/Translate/Adapter/Tbx.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Zend_Translate_Adapter_Tbx extends Zend_Translate_Adapter
{
// Internal variables
private $_file = false;
private $_cleared = array();
private $_langset = null;
private $_termentry = null;
private $_content = null;
Expand Down Expand Up @@ -147,7 +146,7 @@ private function _contentElement($file, $data)

private function _findEncoding($filename)
{
$file = file_get_contents($filename, null, null, 0, 100);
$file = file_get_contents($filename, false, null, 0, 100);
if (strpos($file, 'encoding') !== false) {
$encoding = substr($file, strpos($file, 'encoding') + 9);
$encoding = substr($encoding, 1, strpos($encoding, $encoding[0], 1) - 1);
Expand Down
2 changes: 1 addition & 1 deletion src/Zend/Translate/Adapter/Tmx.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ protected function _contentElement($file, $data)
*/
protected function _findEncoding($filename)
{
$file = file_get_contents($filename, null, null, 0, 100);
$file = file_get_contents($filename, false, null, 0, 100);
if (strpos($file, 'encoding') !== false) {
$encoding = substr($file, strpos($file, 'encoding') + 9);
$encoding = substr($encoding, 1, strpos($encoding, $encoding[0], 1) - 1);
Expand Down
3 changes: 1 addition & 2 deletions src/Zend/Translate/Adapter/Xliff.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class Zend_Translate_Adapter_Xliff extends Zend_Translate_Adapter
// Internal variables
private $_file = false;
private $_useId = true;
private $_cleared = array();
private $_transunit = null;
private $_source = null;
private $_target = null;
Expand Down Expand Up @@ -211,7 +210,7 @@ private function _contentElement($file, $data)

private function _findEncoding($filename)
{
$file = file_get_contents($filename, null, null, 0, 100);
$file = file_get_contents($filename, false, null, 0, 100);
if (strpos($file, 'encoding') !== false) {
$encoding = substr($file, strpos($file, 'encoding') + 9);
$encoding = substr($encoding, 1, strpos($encoding, $encoding[0], 1) - 1);
Expand Down
3 changes: 1 addition & 2 deletions src/Zend/Translate/Adapter/XmlTm.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Zend_Translate_Adapter_XmlTm extends Zend_Translate_Adapter
{
// Internal variables
private $_file = false;
private $_cleared = array();
private $_lang = null;
private $_content = null;
private $_tag = null;
Expand Down Expand Up @@ -121,7 +120,7 @@ private function _contentElement($file, $data)

private function _findEncoding($filename)
{
$file = file_get_contents($filename, null, null, 0, 100);
$file = file_get_contents($filename, false, null, 0, 100);
if (strpos($file, 'encoding') !== false) {
$encoding = substr($file, strpos($file, 'encoding') + 9);
$encoding = substr($encoding, 1, strpos($encoding, $encoding[0], 1) - 1);
Expand Down
Loading

0 comments on commit 780266f

Please sign in to comment.