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 d26b0eb commit 2bbbf42
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# JBZoo / Path

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



Create memory based aliases for your project file system.

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
],

"require" : {
"php" : ">=7.2",
"php" : "^7.2",

"jbzoo/utils" : "^4.0.0",
"jbzoo/data" : "^4.0.0"
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^2.0.0"
"jbzoo/toolbox-dev" : "^2.1.0"
},

"autoload" : {
Expand Down
47 changes: 47 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
JBZoo Toolbox - Path
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 Path
@license MIT
@copyright Copyright (C) JBZoo.com, All rights reserved.
@link https://github.com/JBZoo/Path
-->
<phpunit bootstrap="tests/autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
executionOrder="random"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
>
<testsuites>
<testsuite name="All">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>

<logging>
<log type="coverage-html" target="build/coverage_html" lowUpperBound="75" highLowerBound="95"/>
<log type="coverage-clover" target="build/coverage_xml/main.xml"/>
<log type="coverage-php" target="build/coverage_cov/main.cov"/>
<log type="junit" target="build/coverage_junit/main.xml"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true"/>
</logging>

</phpunit>
26 changes: 26 additions & 0 deletions tests/PathComposerTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

/**
* JBZoo Toolbox - Path
*
* 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 Path
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @link https://github.com/JBZoo/Path
*/

namespace JBZoo\PHPUnit;

/**
* Class PathComposerTest
*
* @package JBZoo\PHPUnit
*/
class PathComposerTest extends AbstractComposerTest
{

}

0 comments on commit 2bbbf42

Please sign in to comment.