Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
better-wp-security
/
vendor-prod
/
patchstack
/
firewall
:
bitbucket-pipelines.yml
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
pipelines: default: - parallel: - step: name: PHP 7.4 image: php:7.4 script: - apt-get update && apt-get install -qy git curl libzip-dev zip - docker-php-ext-install zip - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - composer install --ignore-platform-reqs - ./vendor/bin/phpunit tests caches: - composer - step: name: PHP 8.0 image: php:8.0 script: - apt-get update && apt-get install -qy git curl libzip-dev zip - docker-php-ext-install zip - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - composer install --ignore-platform-reqs - ./vendor/bin/phpunit tests caches: - composer - step: name: PHP 8.1 image: php:8.1 script: - apt-get update && apt-get install -qy git curl libzip-dev zip - docker-php-ext-install zip - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - composer install --ignore-platform-reqs - ./vendor/bin/phpunit tests caches: - composer