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

Symfony 4 Compatibility #493

Open
wants to merge 35 commits into
base: 1.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e0d8042
composer.json updated for SF4 compatibility
romantymoshyk Apr 16, 2018
84dfd19
Updated composer.json for SF 4.0
romantymoshyk Apr 16, 2018
abdcc7c
Symfony4 for Propel 1.7
romantymoshyk Apr 16, 2018
5a5656f
Merge branch '1.7' of https://github.com/romantymoshyk/PropelBundle i…
romantymoshyk Apr 16, 2018
e9d2426
Update of composer.json
romantymoshyk Apr 17, 2018
01b1cee
Symfony 4 compatibility changes
romantymoshyk Apr 17, 2018
a2ce76a
Updated Travis config to be compatible with SF4
romantymoshyk Apr 17, 2018
c48cf20
Added new test for ModelType class
romantymoshyk Apr 18, 2018
dbf2335
CS fixes
romantymoshyk Apr 18, 2018
8e686eb
DefinitionDecorator replaced with ChildDefinition. CS and annotation …
romantymoshyk Apr 23, 2018
a70d963
Fixed commands examples in documentation
romantymoshyk Apr 25, 2018
449a96b
BC changes for Symfony 4.2
romantymoshyk Nov 13, 2018
3b46962
Build fix
romantymoshyk Nov 13, 2018
1f73530
Update composer.json
romantymoshyk Nov 13, 2018
d85067c
Update FixturesLoadCommand.php
romantymoshyk May 17, 2019
60e9639
Update AbstractCommand.php
romantymoshyk May 17, 2019
7bd1692
Deprecation fix for TreeBuilder. Added backward compatibility with sy…
romantymoshyk May 29, 2019
ad1032f
Fixed deprecation for Twig 2.10.0
May 29, 2019
77794b9
Update .travis.yml
romantymoshyk Jun 19, 2019
1913611
Build configuration adjustments
Jun 19, 2019
c2942d0
Update .travis.yml
romantymoshyk Jan 28, 2020
146ba88
Create .gitattributes
romantymoshyk Apr 1, 2020
eafb966
Update .gitattributes
romantymoshyk Apr 1, 2020
23e3172
Update .travis.yml
romantymoshyk Apr 1, 2020
3a1ab5f
Update .travis.yml
romantymoshyk Apr 1, 2020
1c4c6d5
Update .travis.yml
romantymoshyk Apr 1, 2020
ff80424
Update .travis.yml
romantymoshyk Apr 1, 2020
0ac0a89
Update .travis.yml
romantymoshyk Apr 1, 2020
f25ae1f
Update .travis.yml
romantymoshyk Apr 1, 2020
fd1af13
Revert "Update .travis.yml"
Apr 3, 2020
539d2c8
Fixed README.markdown
Apr 3, 2020
72ee0cb
Update README.markdown
romantymoshyk Apr 3, 2020
5ffc315
Update README.markdown
romantymoshyk Apr 3, 2020
84a2c8a
Update README.markdown
Apr 3, 2020
717b358
Merge branch '1.7' of https://github.com/romantymoshyk/PropelBundle i…
Apr 3, 2020
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
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/Resources/doc export-ignore
55 changes: 38 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,57 @@ sudo: false

language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm

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

env:
- SYMFONY_VERSION="^3.0.2"
- SYMFONY_VERSION="^3.0.2" COMPOSER_FLAGS="--prefer-lowest"

matrix:
jobs:
fast_finish: true
include:
- php: 7.1.33
env:
- SYMFONY_VERSION="^3.4.0"

- php: 7.1.33
env:
- SYMFONY_VERSION="4.0.*"

- php: 7.1.33
env:
- SYMFONY_VERSION="4.0.*" COMPOSER_FLAGS="--prefer-lowest"

- php: 7.3
env:
- SYMFONY_VERSION="^4.3"

- php: 7.3
env:
- SYMFONY_VERSION="^4.4"

- php: 7.3
env:
- SYMFONY_VERSION="^5.0"

- php: 7.3
env:
- SYMFONY_VERSION="dev"

allow_failures:
- php: 7.2
- php: hhvm
- php: 7.3
env: SYMFONY_VERSION="dev"

- php: 7.3
env: SYMFONY_VERSION="^5.0"

before_install:
- phpenv config-rm xdebug.ini
- composer self-update
- if [ "${SYMFONY_VERSION}" != "" ]; then composer require --no-update "symfony/symfony:${SYMFONY_VERSION}"; fi;
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
- if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; fi;
- if ! [ -v "$DEPENDENCIES" ]; then composer require --no-update ${DEPENDENCIES}; fi;

install:
- composer update ${COMPOSER_FLAGS} --prefer-source
- composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction --prefer-stable

script:
- vendor/bin/phpunit --colors
Loading