Skip to content

Commit

Permalink
fix: fix minimum php version to 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vicvolk committed Sep 2, 2021
1 parent 585695a commit 7fcbc7e
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ before_commands:
- "composer install --no-interaction"
build:
nodes:
php73:
environment:
php: 7.3
redis: false
php74:
environment:
php: 7.4
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.3
- 7.4

dist: trusty
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Latest Stable Version](https://poser.pugx.org/bingo-soft/bpmplatform/v/stable.png)](https://packagist.org/packages/bingo-soft/bpmplatform)
[![Build Status](https://api.travis-ci.com/bingo-soft/bpmplatform.svg?branch=main)](https://travis-ci.com/bingo-soft/bpmplatform)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.3-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg)](https://php.net/)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/bingo-soft/bpmplatform/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/bingo-soft/bpmplatform/?branch=main)

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 @@
"vendor-dir": "./vendor"
},
"require": {
"php": ">=7.3.0"
"php": ">=7.4.0"
},
"require-dev": {
"doctrine/coding-standard": "^9",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/Xml/ModelTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Unit;
namespace Tests\Xml;

use PHPUnit\Framework\TestCase;
use BpmPlatform\Model\Xml\ModelBuilder;
Expand Down
2 changes: 1 addition & 1 deletion tests/Xml/StringUtilTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Unit;
namespace Tests\Xml;

use PHPUnit\Framework\TestCase;
use BpmPlatform\Model\Xml\Impl\Util\StringUtil;
Expand Down
22 changes: 22 additions & 0 deletions tests/Xml/Type/ModelElementTypeTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace Tests\Xml\Type;

use PHPUnit\Framework\TestCase;
use BpmPlatform\Model\Xml\ModelBuilder;
use BpmPlatform\Model\Xml\TestModel\{
TestModel,
TestModelConstants
};
use BpmPlatform\Model\Xml\TestModel\Instance\{
Animals,
Animal,
Bird,
FlyingAnimal,
RelationshipDefinition
};

class ModelElementTypeTest extends TestCase
{
//
}

0 comments on commit 7fcbc7e

Please sign in to comment.