Skip to content

Commit

Permalink
Update composer and copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Jan 9, 2019
1 parent f4612df commit de6a5e8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE.TXT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3 Clause License

Copyright (c) 2009-2018, NOLA Interactive, LLC.
Copyright (c) 2009-2019, NOLA Interactive, LLC.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
}
],
"require": {
"php": ">=5.6.0"
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
"phpunit/phpunit": "^7.0.0"
},
"autoload": {
"psr-4": {
Expand Down
8 changes: 4 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="/tmp/pop-dir-cc" charset="UTF-8"
yui="true" highlight="false" showUncoveredFiles="true"
lowUpperBound="35" highLowerBound="70" />
<log type="coverage-html" target="/tmp/pop-dir-cc" lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-text" showUncoveredFiles="true"/>
</logging>
</phpunit>
6 changes: 3 additions & 3 deletions src/Dir.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2018 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
*/

Expand All @@ -19,9 +19,9 @@
* @category Pop
* @package Pop\Dir
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2018 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
* @version 3.0.1
* @version 3.0.2
*/
class Dir implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
6 changes: 3 additions & 3 deletions src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2018 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
*/

Expand All @@ -19,8 +19,8 @@
* @category Pop
* @package Pop\Dir
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2018 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
* @version 3.0.1
* @version 3.0.2
*/
class Exception extends \Exception {}
3 changes: 2 additions & 1 deletion tests/DirTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Dir\Test;

use Pop\Dir\Dir;
use PHPUnit\Framework\TestCase;

class DirTest extends \PHPUnit_Framework_TestCase
class DirTest extends TestCase
{

public function testConstructor()
Expand Down

0 comments on commit de6a5e8

Please sign in to comment.