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

Updated PHP version requirement to ^8.1. #264

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Set current version as dev-master.

28c9123
Select commit
Loading
Failed to load commit list.
Open

Updated PHP version requirement to ^8.1. #264

Set current version as dev-master.
28c9123
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jul 25, 2024 in 4m 58s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #264 Updated PHP version requirement to ^8.1..
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job PHP OS State
20.1 7.4 Linux passed
20.2 8.0 Linux passed
20.3 8.1 Linux passed

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Xenial)
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "install": [
    "travis_retry composer install"
  ],
  "script": [
    "composer ci"
  ],
  "after_success": [
    "if [[ \"`phpenv version-name`\" != \"8.0\" ]]; then exit 0; fi",
    "vendor/bin/phpunit --coverage-clover coverage.clover",
    "wget https://scrutinizer-ci.com/ocular.phar",
    "php ocular.phar code-coverage:upload --format=php-clover coverage.clover"
  ],
  "notifications": {
    "irc": [
      {
        "channels": [
          "irc.libera.chat#wikidata-feed"
        ],
        "on_success": "change",
        "on_failure": "always",
        "template": [
          "%{repository}/%{branch}/%{commit} : %{author} %{message} %{build_url}"
        ]
      }
    ]
  },
  "cache": {
    "directories": [
      "$HOME/.composer/cache"
    ]
  },
  "jobs": {
    "fast_finish": true,
    "include": [
      {
        "php": "7.4"
      },
      {
        "php": "8.0"
      },
      {
        "php": "8.1"
      }
    ]
  }
}