PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Smoren Freelight   Nested PHP Accessor   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nested PHP Accessor
Get and set values of nested arrays or objects
Author: By
Last change:
Date: 1 year ago
Size: 570 bytes
 

Contents

Class file image Download
# Required to run your project under the correct environment language: php # Versions of PHP you want your project run with php: - 7.4 - 8.0 - 8.1 # fast_finish: If your build fails do not continue trying to build, just stop. matrix: fast_finish: true include: - php: 7.4 - php: 8.0 - php: 8.1 # Update composer before-install: - composer self-update # Install composer dependencies, init codeception install: - composer install --no-interaction --dev - composer test-init # Run script script: - composer test - composer codesniffer