Skip to content

Commit fb4c990

Browse files
committed
Fixes versions
1 parent 790e4d4 commit fb4c990

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# JBZoo / Utils
22

33
[![Build Status](https://travis-ci.org/JBZoo/Utils.svg?branch=master)](https://travis-ci.org/JBZoo/Utils) [![Coverage Status](https://coveralls.io/repos/JBZoo/Utils/badge.svg)](https://coveralls.io/github/JBZoo/Utils?branch=master) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Utils/coverage.svg)](https://shepherd.dev/github/JBZoo/Utils)
4-
[![Latest Stable Version](https://poser.pugx.org/JBZoo/Utils/v)](https://packagist.org/packages/JBZoo/Utils) [![Latest Unstable Version](https://poser.pugx.org/JBZoo/Utils/v/unstable)](https://packagist.org/packages/JBZoo/Utils) [![Dependents](https://poser.pugx.org/JBZoo/Utils/dependents)](https://packagist.org/packages/JBZoo/Utils/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/JBZoo/Utils)](https://github.com/JBZoo/Utils/issues) [![Total Downloads](https://poser.pugx.org/JBZoo/Utils/downloads)](https://packagist.org/packages/JBZoo/Utils/stats) [![GitHub License](https://img.shields.io/github/license/JBZoo/Utils)](https://github.com/JBZoo/Utils/blob/master/LICENSE)
4+
[![Stable Version](https://poser.pugx.org/jbzoo/utils/version)](https://packagist.org/packages/jbzoo/utils) [![Latest Unstable Version](https://poser.pugx.org/jbzoo/utils/v/unstable)](https://packagist.org/packages/jbzoo/utils) [![Dependents](https://poser.pugx.org/jbzoo/utils/dependents)](https://packagist.org/packages/jbzoo/utils/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/jbzoo/utils)](https://github.com/JBZoo/Utils/issues) [![Total Downloads](https://poser.pugx.org/jbzoo/utils/downloads)](https://packagist.org/packages/jbzoo/utils/stats) [![GitHub License](https://img.shields.io/github/license/jbzoo/utils)](https://github.com/JBZoo/Utils/blob/master/LICENSE)
5+
6+
57

68
Collection of PHP functions, mini classes and snippets for everyday developer's routine life.
79

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727

2828
"require" : {
29-
"php" : ">=7.2",
29+
"php" : "^7.2",
3030
"ext-posix" : "*",
3131
"ext-mbstring" : "*",
3232
"ext-gd" : "*",
@@ -35,7 +35,7 @@
3535
},
3636

3737
"require-dev" : {
38-
"jbzoo/toolbox-dev" : "^2.0.0",
38+
"jbzoo/toolbox-dev" : "^2.1.0",
3939
"jbzoo/data" : "^4.0.0",
4040
"symfony/process" : "^4.4|^5.0",
4141
"symfony/polyfill-mbstring" : "^1.12"
@@ -71,7 +71,7 @@
7171

7272
"extra" : {
7373
"branch-alias" : {
74-
"dev-master" : "4.0.x-dev"
74+
"dev-master" : "4.x-dev"
7575
}
7676
}
7777
}

tests/UtilsComposerTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
/**
4+
* JBZoo Toolbox - Utils
5+
*
6+
* This file is part of the JBZoo Toolbox project.
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*
10+
* @package Utils
11+
* @license MIT
12+
* @copyright Copyright (C) JBZoo.com, All rights reserved.
13+
* @link https://github.com/JBZoo/Utils
14+
*/
15+
16+
namespace JBZoo\PHPUnit;
17+
18+
/**
19+
* Class UtilsComposerTest
20+
*
21+
* @package JBZoo\PHPUnit
22+
*/
23+
class UtilsComposerTest extends AbstractComposerTest
24+
{
25+
}

tests/UtilsReadmeTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
namespace JBZoo\PHPUnit;
1717

1818
/**
19-
* Class CodestyleReadmeTest
19+
* Class UtilsReadmeTest
2020
*
2121
* @package JBZoo\PHPUnit
2222
*/
2323
class UtilsReadmeTest extends AbstractReadmeTest
2424
{
2525
protected $packageName = 'Utils';
26-
protected $codacyId = '28babe533d6749a69d805c19abfc6b5a';
2726
}

0 commit comments

Comments
 (0)