| 12345678910111213141516171819202122232425262728 | language: phpcompiler:  - gcc  - clangos:  - linuxphp:  - 7.0  - 7.1notifications:  email: [email protected]before_script:  - sudo apt-get install zlib1g-dev -y  - git clone https://github.com/jmcnamara/libxlsxwriter.git  - make -C ./libxlsxwriter && sudo make -C ./libxlsxwriter install  - phpize && ./configure && make clean && makebranches:  only:    - master    - devscript:    - ./travis/run-test.sh
 |