mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
Merge pull request #318
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
language: php
|
||||
sudo: false
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.composer/cache/files
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- php: 7.1
|
||||
env: SKELETON_VERSION="^3.4"
|
||||
- php: 7.1
|
||||
env: SKELETON_VERSION="^4.0"
|
||||
|
||||
before_install:
|
||||
- phpenv config-rm xdebug.ini || true
|
||||
- export SYMFONY_ENDPOINT=https://symfony.sh/r/github.com/symfony/recipes/${TRAVIS_PULL_REQUEST}
|
||||
- export PACKAGES=$(curl -s $SYMFONY_ENDPOINT | sed -En 's/.*composer req "([^"]+)".*/\1/p')
|
||||
|
||||
install:
|
||||
- composer create-project "symfony/skeleton:${SKELETON_VERSION}" flex
|
||||
- cd flex
|
||||
|
||||
script:
|
||||
- composer req "${PACKAGES}"
|
||||
Reference in New Issue
Block a user