1language: php
2
3php:
4  - 5.3
5  - 5.4
6  - 5.5
7
8env:
9  global:
10    - PLUGIN_NAME=Crud
11    - REQUIRE="cakephp/debug_kit:2.2.* cakedc/search:dev-develop"
12    - DB=mysql CAKE_VERSION=2.4
13
14  matrix:
15    - DB=mysql CAKE_VERSION=2.4
16    - DB=mysql CAKE_VERSION=2.5
17
18matrix:
19  include:
20    - php: 5.4
21      env:
22        - COVERALLS=1
23    - php: 5.4
24      env:
25        - PHPCS=1 PHPCS_IGNORE="*/Test/*"
26
27before_script:
28  - git clone https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
29  - ../travis/before_script.sh
30
31script:
32  - ../travis/script.sh
33
34after_success:
35  - ../travis/after_success.sh
36
37notifications:
38  email: false
39