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

Do not use superglobals #14

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

fix comments

0549b17
Select commit
Loading
Failed to load commit list.
Open

Do not use superglobals #14

fix comments
0549b17
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Mar 28, 2024 in 57s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #14 Do not use superglobals.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has seven jobs, running in parallel.

Job PHP OS State
85.1 8.0 Linux passed
85.2 7.4 Linux passed
85.3 7.3 Linux passed
85.4 7.2 Linux passed
85.5 8.1 Linux passed
85.6 8.2 Linux passed
85.7 Validate ruleset XML file 7.4 Linux passed

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Bionic)
PHP Versions 8.0, 7.4, 7.3, 7.2
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "if": "branch = master",
  "php": [
    "8.0",
    "7.4",
    "7.3",
    "7.2"
  ],
  "jobs": {
    "include": [
      {
        "php": "8.1",
        "script": [
          "composer run test:cs"
        ]
      },
      {
        "dist": "jammy",
        "addons": {
          "apt": {
            "packages": [
              "libonig5"
            ]
          }
        },
        "php": "8.2",
        "script": [
          "composer run test:cs"
        ]
      },
      {
        "name": "Validate ruleset XML file",
        "addons": {
          "apt": {
            "packages": [
              "libxml2-utils"
            ]
          }
        },
        "php": "7.4",
        "script": [
          "composer run test:xml"
        ]
      }
    ]
  },
  "cache": {
    "directories": [
      "${HOME}/.composer/cache"
    ]
  },
  "before_install": [
    "phpenv config-rm xdebug.ini",
    "composer validate --strict"
  ],
  "install": [
    "composer update --no-interaction"
  ],
  "script": [
    "composer run test:cs",
    "composer run test:e2e"
  ]
}