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

Commit 72306e6

Browse files
committed
DevKit updates
1 parent ad3e2e2 commit 72306e6

File tree

5 files changed

+35
-34
lines changed

5 files changed

+35
-34
lines changed

.travis.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cache:
2626
- $HOME/.composer/cache/files
2727

2828
env:
29-
matrix: SYMFONY_VERSION="4.0.*""
29+
matrix: SYMFONY_VERSION="4.0.*"
3030
global:
3131
- SYMFONY_DEPRECATIONS_HELPER="weak"
3232
- SYMFONY_PHPUNIT_DIR=.phpunit SYMFONY_PHPUNIT_REMOVE="symfony/yaml"
@@ -38,27 +38,24 @@ env:
3838
matrix:
3939
include:
4040
- php: "7.1"
41-
env: STABILITY=dev SYMFONY_VERSION=4.0.*
41+
env: STABILITY="dev" SYMFONY_VERSION="4.2.*"
4242
- php: "7.1"
43-
env: STABILITY=dev COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION=2.8.* SYMFONY_DEPRECATIONS_HELPER=weak
43+
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION="3.4.*" SYMFONY_DEPRECATIONS_HELPER="0"
4444
- php: "7.1"
45-
env: STABILITY=dev SYMFONY_VERSION=3.3.*
45+
env: STABILITY="dev" SYMFONY_VERSION="4.0.*"
4646
- php: "7.1"
47-
env: STABILITY=dev SYMFONY_VERSION=3.4.*
48-
- env: TEST_INSTALLATION=true
47+
env: STABILITY="dev" SYMFONY_VERSION="4.1.*"
4948
fast_finish: true
50-
allow_failures:
51-
- env: TEST_INSTALLATION=true
5249

5350
before_install:
5451
- phpenv config-rm xdebug.ini || true
5552
- composer self-update
53+
- composer validate --no-check-all --ansi
5654
- if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; composer config prefer-stable true; fi;
5755
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
5856
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
5957

6058
install: travis_wait composer update --prefer-dist $COMPOSER_FLAGS
61-
6259
script:
6360
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
6461

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ list:
2626
@echo 'unit_tests: will run unit tests only'
2727
@echo 'functional_tests_phpcr: will run functional tests with PHPCR'
2828

29-
@echo 'test_installation: will run installation test'
29+
3030
include ${TESTING_SCRIPTS_DIR}/make/unit_tests.mk
3131
include ${TESTING_SCRIPTS_DIR}/make/functional_tests_phpcr.mk
32-
include ${TESTING_SCRIPTS_DIR}/make/test_installation.mk
3332

3433
.PHONY: test
3534
test: unit_tests functional_tests_phpcr

README.md

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,37 @@
88
[![Monthly Downloads](https://poser.pugx.org/symfony-cmf/sonata-phpcr-admin-integration-bundle/d/monthly)](https://packagist.org/packages/symfony-cmf/sonata-phpcr-admin-integration-bundle)
99
[![Daily Downloads](https://poser.pugx.org/symfony-cmf/sonata-phpcr-admin-integration-bundle/d/daily)](https://packagist.org/packages/symfony-cmf/sonata-phpcr-admin-integration-bundle)
1010

11-
Branch | Travis | Coveralls |
12-
------ | ------ | --------- |
13-
master | [![Build Status][travis_unstable_badge]][travis_link] | [![Coverage Status][coveralls_unstable_badge]][coveralls_unstable_link] |
11+
Branch | Travis | Coveralls | Scrutinizer |
12+
------ | ------ | --------- | ----------- |
13+
1.0 | [![Build Status][travis_stable_badge]][travis_stable_link] | [![Coverage Status][coveralls_stable_badge]][coveralls_stable_link] | [![Scrutinizer Status][scrutinizer_stable_badge]][scrutinizer_stable_link] |
14+
1.1-dev | [![Build Status][travis_unstable_badge]][travis_unstable_link] | [![Coverage Status][coveralls_unstable_badge]][coveralls_unstable_link] | [![Scrutinizer Status][scrutinizer_unstable_badge]][scrutinizer_unstable_link] |
1415

15-
This package is part of the [Symfony Content Management Framework (CMF)](http://cmf.symfony.com/) and licensed
16+
17+
This package is part of the [Symfony Content Management Framework (CMF)](https://cmf.symfony.com/) and licensed
1618
under the [MIT License](LICENSE).
1719

1820

1921

2022
## Requirements
2123

2224
* PHP 7.1
23-
* Symfony 2.8 / 3.3 / 3.4 / 4.0
25+
* Symfony 3.4 / 4.0 / 4.1 / 4.2
2426
* See also the `require` section of [composer.json](composer.json)
2527

2628
## Documentation
2729

2830
For the install guide and reference, see:
2931

30-
* [symfony-cmf/sonata-phpcr-admin-integration-bundle Documentation](http://symfony.com/doc/master/cmf/bundles/sonata-phpcr-admin-integration-bundle/index.html)
32+
* [symfony-cmf/sonata-phpcr-admin-integration-bundle Documentation](https://symfony.com/doc/master/cmf/bundles/sonata-phpcr-admin-integration-bundle/index.html)
3133

3234
See also:
3335

34-
* [All Symfony CMF documentation](http://symfony.com/doc/master/cmf/index.html) - complete Symfony CMF reference
35-
* [Symfony CMF Website](http://cmf.symfony.com/) - introduction, live demo, support and community links
36+
* [All Symfony CMF documentation](https://symfony.com/doc/master/cmf/index.html) - complete Symfony CMF reference
37+
* [Symfony CMF Website](https://cmf.symfony.com/) - introduction, live demo, support and community links
3638

3739
## Support
3840

39-
For general support and questions, please use [StackOverflow](http://stackoverflow.com/questions/tagged/symfony-cmf).
41+
For general support and questions, please use [StackOverflow](https://stackoverflow.com/questions/tagged/symfony-cmf).
4042

4143
## Contributing
4244

@@ -45,7 +47,7 @@ Pull requests are welcome. Please see our
4547
guide.
4648

4749
Unit and/or functional tests exist for this package. See the
48-
[Testing documentation](http://symfony.com/doc/master/cmf/components/testing.html)
50+
[Testing documentation](https://symfony.com/doc/master/cmf/components/testing.html)
4951
for a guide to running the tests.
5052

5153
Thanks to
@@ -55,14 +57,17 @@ Thanks to
5557

5658
This package is available under the [MIT license](src/Resources/meta/LICENSE).
5759

58-
[travis_legacy_badge]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle.svg?branch=master
59-
[travis_stable_badge]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle.svg?branch=master
60-
[travis_unstable_badge]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle.svg?branch=master
61-
[travis_link]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle
62-
63-
[coveralls_legacy_badge]: https://coveralls.io/repos/github/symfony-cmf/sonata-phpcr-admin-integration-bundle/badge.svg?branch=master
64-
[coveralls_legacy_link]: https://coveralls.io/github/symfony-cmf/sonata-phpcr-admin-integration-bundle?branch=master
65-
[coveralls_stable_badge]: https://coveralls.io/repos/github/symfony-cmf/sonata-phpcr-admin-integration-bundle/badge.svg?branch=master
66-
[coveralls_stable_link]: https://coveralls.io/github/symfony-cmf/sonata-phpcr-admin-integration-bundle?branch=master
67-
[coveralls_unstable_badge]: https://coveralls.io/repos/github/symfony-cmf/sonata-phpcr-admin-integration-bundle/badge.svg?branch=master
68-
[coveralls_unstable_link]: https://coveralls.io/github/symfony-cmf/sonata-phpcr-admin-integration-bundle?branch=master
60+
[travis_stable_badge]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle.svg?branch=1.0
61+
[travis_stable_link]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle
62+
[travis_unstable_badge]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle.svg?branch=1.1-dev
63+
[travis_unstable_link]: https://travis-ci.org/symfony-cmf/sonata-phpcr-admin-integration-bundle
64+
65+
[coveralls_stable_badge]: https://coveralls.io/repos/github/symfony-cmf/sonata-phpcr-admin-integration-bundle/badge.svg?branch=1.0
66+
[coveralls_stable_link]: https://coveralls.io/github/symfony-cmf/sonata-phpcr-admin-integration-bundle?branch=1.0
67+
[coveralls_unstable_badge]: https://coveralls.io/repos/github/symfony-cmf/sonata-phpcr-admin-integration-bundle/badge.svg?branch=1.1-dev
68+
[coveralls_unstable_link]: https://coveralls.io/github/symfony-cmf/sonata-phpcr-admin-integration-bundle?branch=1.1-dev
69+
70+
[scrutinizer_stable_badge]: https://scrutinizer-ci.com/g/symfony-cmf/sonata-phpcr-admin-integration-bundle/badges/quality-score.png?b=1.0
71+
[scrutinizer_stable_link]: https://scrutinizer-ci.com/g/symfony-cmf/sonata-phpcr-admin-integration-bundle/?branch=1.0
72+
[scrutinizer_unstable_badge]: https://scrutinizer-ci.com/g/symfony-cmf/sonata-phpcr-admin-integration-bundle/badges/quality-score.png?b=1.1-dev
73+
[scrutinizer_unstable_link]: https://scrutinizer-ci.com/g/symfony-cmf/sonata-phpcr-admin-integration-bundle/?branch=1.1-dev

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"doctrine/orm": "^2.4",
3434
"doctrine/phpcr-odm": "^1.4|^2.0",
3535
"doctrine/doctrine-bundle": "^1.3",
36-
"symfony/phpunit-bridge": "^3.3 || ^4.0",
36+
"symfony/phpunit-bridge": "^3.4 || ^4.0",
3737
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
3838
"matthiasnoback/symfony-config-test": "^2.1",
3939
"burgov/key-value-form-bundle": "^1.0",

src/Resources/meta/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Symfony Cmf Sonata Phpcr Admin Integration Bundle
1+
Symfony CMF Sonata Phpcr Admin Integration Bundle
22

33
The MIT License
44

0 commit comments

Comments
 (0)