Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 484ff40

Browse files
committed
DevKit updates
1 parent 5d0be79 commit 484ff40

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

.travis.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,22 @@ cache:
2626
- $HOME/.composer/cache/files
2727

2828
env:
29-
matrix: SYMFONY_VERSION="4.0.*"
29+
matrix: SYMFONY_VERSION="4.2.*"
3030
global:
31-
- SYMFONY_DEPRECATIONS_HELPER="weak"
31+
- SYMFONY_DEPRECATIONS_HELPER="/weak/"
3232
- SYMFONY_PHPUNIT_DIR=.phpunit SYMFONY_PHPUNIT_REMOVE="symfony/yaml"
33-
- KERNEL_CLASS=Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Fixtures\App\Kernel
34-
- SYMFONY_PHPUNIT_VERSION=5.7.26
35-
- TEST_INSTALLATION=false
36-
- COMPOSER_MEMORY_LIMIT=-1
33+
- KERNEL_CLASS="Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Fixtures\App\Kernel"
34+
- SYMFONY_PHPUNIT_VERSION="5.7.26"
3735

3836
matrix:
3937
include:
40-
- php: "7.1"
38+
- php: "7.3"
4139
env: STABILITY="dev" SYMFONY_VERSION="4.2.*"
42-
- php: "7.1"
43-
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION="3.4.*" SYMFONY_DEPRECATIONS_HELPER="0"
44-
- php: "7.1"
40+
- php: "7.2"
41+
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION="3.4.*" SYMFONY_DEPRECATIONS_HELPER="/weak/"
42+
- php: "7.3"
4543
env: STABILITY="dev" SYMFONY_VERSION="4.0.*"
46-
- php: "7.1"
44+
- php: "7.3"
4745
env: STABILITY="dev" SYMFONY_VERSION="4.1.*"
4846
fast_finish: true
4947

@@ -55,7 +53,10 @@ before_install:
5553
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
5654
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
5755

58-
install: travis_wait composer update --prefer-dist $COMPOSER_FLAGS
56+
install:
57+
- phpenv config-add travis.php.ini
58+
- php -ini | grep memory_limit
59+
- travis_wait composer update --prefer-dist $COMPOSER_FLAGS
5960
script:
6061
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
6162

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the [MIT License](LICENSE).
2121

2222
## Requirements
2323

24-
* PHP 7.1
24+
* PHP 7.2 / 7.3
2525
* Symfony 3.4 / 4.0 / 4.1 / 4.2
2626
* See also the `require` section of [composer.json](composer.json)
2727

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1",
20-
"symfony/framework-bundle": "^2.8 || ^3.3 || ^4.0",
19+
"php": "^7.2",
20+
"symfony/framework-bundle": "^3.4 || ^4.0",
2121
"sonata-project/doctrine-phpcr-admin-bundle": "^2.2",
2222
"sonata-project/admin-bundle": "^3.6.0",
2323
"symfony-cmf/tree-browser-bundle": "^2.0"
@@ -37,12 +37,12 @@
3737
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
3838
"matthiasnoback/symfony-config-test": "^2.1",
3939
"burgov/key-value-form-bundle": "^1.0",
40-
"friendsofsymfony/ckeditor-bundle": "^1.0",
40+
"friendsofsymfony/ckeditor-bundle": "^3.4 || ^4.0",
4141
"sebastian/environment": "^1.3.4",
4242
"sebastian/exporter": "^2.0.0",
43-
"symfony/asset": "^2.8 || ^3.3 || ^4.0",
44-
"symfony/browser-kit": "^2.8 || ^3.3 || ^4.0",
45-
"symfony/css-selector": "^2.8 || ^3.3 || ^4.0"
43+
"symfony/asset": "^3.4 || ^4.0",
44+
"symfony/browser-kit": "^3.4 || ^4.0",
45+
"symfony/css-selector": "^3.4 || ^4.0"
4646
},
4747
"suggest": {
4848
"symfony-cmf/routing-bundle": "To make use of the alternate locale provider.",

travis.php.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
memory_limit = -1

0 commit comments

Comments
 (0)