Skip to content

Commit

Permalink
Fixes versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Jul 14, 2020
1 parent 790e4d4 commit fb4c990
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
@@ -1,7 +1,9 @@
# JBZoo / Utils

[![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)
[![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)
[![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)



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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -26,7 +26,7 @@
],

"require" : {
"php" : ">=7.2",
"php" : "^7.2",
"ext-posix" : "*",
"ext-mbstring" : "*",
"ext-gd" : "*",
Expand All @@ -35,7 +35,7 @@
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^2.0.0",
"jbzoo/toolbox-dev" : "^2.1.0",
"jbzoo/data" : "^4.0.0",
"symfony/process" : "^4.4|^5.0",
"symfony/polyfill-mbstring" : "^1.12"
Expand Down Expand Up @@ -71,7 +71,7 @@

"extra" : {
"branch-alias" : {
"dev-master" : "4.0.x-dev"
"dev-master" : "4.x-dev"
}
}
}
25 changes: 25 additions & 0 deletions tests/UtilsComposerTest.php
@@ -0,0 +1,25 @@
<?php

/**
* JBZoo Toolbox - Utils
*
* This file is part of the JBZoo Toolbox project.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Utils
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @link https://github.com/JBZoo/Utils
*/

namespace JBZoo\PHPUnit;

/**
* Class UtilsComposerTest
*
* @package JBZoo\PHPUnit
*/
class UtilsComposerTest extends AbstractComposerTest
{
}
3 changes: 1 addition & 2 deletions tests/UtilsReadmeTest.php
Expand Up @@ -16,12 +16,11 @@
namespace JBZoo\PHPUnit;

/**
* Class CodestyleReadmeTest
* Class UtilsReadmeTest
*
* @package JBZoo\PHPUnit
*/
class UtilsReadmeTest extends AbstractReadmeTest
{
protected $packageName = 'Utils';
protected $codacyId = '28babe533d6749a69d805c19abfc6b5a';
}

0 comments on commit fb4c990

Please sign in to comment.