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
/
automated-postnord-shipping
/
controllors
/
classes
/
gtrans
/
vendor
/
google
/
gax
/
dev
/
sh
:
test-composer-conflict.sh
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
#!/bin/bash # Try to run `composer install`, with the expectation that it will FAIL! # This is to test that the 'conflict' clause of the composer.json file # is correctly blocking installation when an incompatible protobuf # extension is present. if composer install ; then echo "Expected 'composer install' to fail, but it succeeded!" exit 1 else echo "'composer install' failed, as expected" fi