Skip to content

Commit a1b60e8

Browse files
committed
Merge branch 'autosplit' into v1.0
2 parents c4c215a + 8506a21 commit a1b60e8

File tree

2 files changed

+48
-21
lines changed

2 files changed

+48
-21
lines changed

.gitsplit.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
cache_dir: "/cache/gitsplit"
2+
3+
splits:
4+
- prefix: "src/Component/Core"
5+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-core.git"
6+
- prefix: "src/Component/Checker"
7+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-checker.git"
8+
- prefix: "src/Component/Signature"
9+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-signature.git"
10+
- prefix: "src/Component/Encryption"
11+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-encryption.git"
12+
- prefix: "src/Component/KeyManagement"
13+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-key-mgmt.git"
14+
- prefix: "src/Component/Console"
15+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-console.git"
16+
- prefix: "src/Bundle/JoseFramework"
17+
target: "https://${GH_TOKEN}@github.com/web-token/jwt-bundle.git"
18+
19+
origins:
20+
- ^master$
21+
- ^v\d+\.\d+\.\d+$

.travis.yml

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,33 @@
11
language: php
2-
sudo: true
2+
3+
sudo: required
4+
35
cache:
4-
directories:
5-
- "$HOME/.composer/cache"
6-
- vendor
6+
directories:
7+
- "$HOME/.composer/cache"
8+
- "vendor"
9+
710
matrix:
8-
allow_failures:
9-
- php: nightly
10-
fast_finish: true
11-
include:
12-
- php: 7.1
13-
env: deps=low
14-
- php: 7.1
15-
- php: nightly
16-
- php: 7.2
11+
allow_failures:
12+
- php: nightly
13+
fast_finish: true
14+
include:
15+
- php: 7.1
16+
env: deps=low
17+
- php: 7.1
18+
- php: nightly
19+
- php: 7.2
20+
1721
before_script:
18-
- chmod +x ./tests/install_php_ext.sh
19-
- if [ "$TRAVIS_PHP_VERSION" = '7.1' ]; then ./tests/install_php_ext.sh; fi
20-
- composer self-update
21-
- mkdir -p build/logs
22-
- if [[ $deps = low ]]; then composer update --no-interaction --prefer-lowest ; fi
23-
- if [[ !$deps ]]; then composer install --no-interaction ; fi
22+
- chmod +x ./tests/install_php_ext.sh
23+
- if [ "$TRAVIS_PHP_VERSION" = '7.1' ]; then ./tests/install_php_ext.sh; fi
24+
- composer self-update
25+
- mkdir -p build/logs
26+
- if [[ $deps = low ]]; then composer update --no-interaction --prefer-lowest ; fi
27+
- if [[ !$deps ]]; then composer install --no-interaction ; fi
28+
2429
script:
25-
- "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
30+
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
31+
2632
after_success:
27-
- vendor/bin/coveralls --no-interaction
33+
- ./vendor/bin/coveralls --no-interaction

0 commit comments

Comments
 (0)