Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Merge a74a544 into 4f1bd2e
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI committed Jan 9, 2019
2 parents 4f1bd2e + a74a544 commit ac13488
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/Bug.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: 🐞 Bug Report
about: Something is broken? 🔨
labels: bug, unconfirmed
---

<!--
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/Feature.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: 🚀 Feature Request
about: I have a suggestion (and may want to implement it 🙂)!
labels: feature
---

## Feature Request
Expand Down
6 changes: 6 additions & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ $rules = [
'@PHP56Migration' => true,
'@PHP56Migration:risky' => true,
'@PHPUnit57Migration:risky' => true,
'@PHP70Migration' => true,
'@PHP70Migration:risky' => true,
'@PHPUnit60Migration:risky' => true,
'@PHP71Migration' => true,
'@PHP71Migration:risky' => true,
'compact_nullable_typehint' => true,
// To be tested before insertion:
// 'strict_comparison' => true,
// 'strict_param' => true,
Expand Down
21 changes: 10 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ branches:
language: php

php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- nightly

sudo: false
Expand All @@ -35,26 +34,26 @@ env:
- SYMFONY_DEPRECATIONS_HELPER=weak_vendors
- TARGET=test
- UPSTREAM_URL=https://github.com/sonata-project/SonataNotificationBundle.git
- PHPUNIT_VERSION=5.7
- PHPUNIT_VERSION=7

matrix:
fast_finish: true
include:
- php: '7.2'
- php: '7.3'
env: TARGET=docs
- php: '7.2'
- php: '7.3'
env: TARGET=lint
- php: '5.6'
- php: '7.1'
env: COMPOSER_FLAGS="--prefer-lowest"
- php: '7.2'
- php: '7.3'
env: SYMFONY=3.4.*
- php: '7.2'
- php: '7.3'
env: SYMFONY='dev-master as 3.4.x-dev'
- php: '7.2'
- php: '7.3'
env: SONATA_CORE=3.*
- php: '7.2'
- php: '7.3'
env: SONATA_CORE='dev-master as 3.x-dev'
- php: '7.2'
- php: '7.3'
env: SYMFONY_DEPRECATIONS_HELPER=0
allow_failures:
- php: nightly
Expand Down
2 changes: 2 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Sonata Project package.
*
Expand Down

0 comments on commit ac13488

Please sign in to comment.