Testing YMCA Website Services for PHP 7.4 version support

Requirements

  • php-cli 7.4 ( memory_limit value should be large (2000M) or unlimited (-1) in order to not fail)
  • Composer 2

Steps

  1. Obtain the latest development code of YMCA Website Services.

    composer create-project YCloudYUSA/yusaopeny-project:9.2.x-development-dev openy7.4
    
  2. Add phpcompatibility to the require-dev section.

    cd openy7.4
    composer require --dev phpcompatibility/php-compatibility
    ./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 7.4 --config-set installed_paths vendor/phpcompatibility/php-compatibility
    
  3. Generate a report.

    ./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 7.4 --report-file=report.txt
    

    Or, if you need to skip warnings:

    ./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 7.4 --report-file=report.txt -n
    

    In report.txt, you’d find a full list of findings to be resolved in order to pass compatibility.

Last modified March 11, 2025: fix: markdown ai typo (7c7c61db)