Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated composer requirements for Sulu 2.0 #11

Merged
merged 9 commits into from
Aug 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
sudo: false
dist: trusty

language: php

cache:
directories:
- $HOME/.composer/cache
- downloads
- "$HOME/.composer/cache/files"

matrix:
include:
- php: 5.5
- php: 7.0
env:
- ENABLE_SWAP=true
- php: 7.3

before_script:
before_install:
- | # enable swap
if [[ $ENABLE_SWAP == 'true' ]]; then
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo sysctl vm.swappiness=10
fi
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini

before_script:
- phpenv config-rm xdebug.ini
- composer self-update
- composer install --prefer-dist --no-interaction
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-dist --no-interaction

script:
- vendor/bin/phpunit
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG for Sulu
==================

* 1.4.0-RC1
* ENHANCEMENT #- Updated composer requirement for sulu 2.0

* 1.3.2
* ENHANCEMENT #- Add conflict for liip/theme-bundle

* 1.3.1
* ENHANCEMENT #- Updated sulu requirement

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"require": {
"php": "~5.5 || ~7.0",
"liip/theme-bundle": "~1.4",
"sulu/sulu": "^1.5"
"sulu/sulu": "^1.5 || ^2.0 || dev-develop"
},
"require-dev": {
"jackalope/jackalope-jackrabbit": "~1.2",
Expand Down