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 f11955f commit 9bbb47c
Show file tree
Hide file tree
Showing 22 changed files with 57 additions and 50 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,15 +18,15 @@
}
],
"require": {
"php": ">=5.6.0"
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"Pop\\Css\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
"phpunit/phpunit": "^7.0.0"
},
"autoload-dev": {
"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-css-cc" charset="UTF-8"
yui="true" highlight="false" showUncoveredFiles="true"
lowUpperBound="35" highLowerBound="70" />
<log type="coverage-html" target="/tmp/pop-css-cc" lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-text" showUncoveredFiles="true"/>
</logging>
</phpunit>
6 changes: 3 additions & 3 deletions src/AbstractCss.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\Css
* @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 1.0.6
* @version 1.0.7
*/
abstract class AbstractCss implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Color
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color/ColorInterface.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\Css
* @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 1.0.6
* @version 1.0.7
*/
interface ColorInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color/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,9 +19,9 @@
* @category Pop
* @package Pop\Css
* @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 1.0.6
* @version 1.0.7
*/
class Exception extends \Exception
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color/Hex.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Hex implements \ArrayAccess, ColorInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color/Hsl.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Hsl implements \ArrayAccess, ColorInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/Color/Rgb.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Rgb implements \ArrayAccess, ColorInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/Comment.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Comment
{
Expand Down
6 changes: 3 additions & 3 deletions src/Css.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Css extends AbstractCss
{
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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Exception extends \Exception {}
6 changes: 3 additions & 3 deletions src/Media.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Media extends AbstractCss
{
Expand Down
6 changes: 3 additions & 3 deletions src/Selector.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\Css
* @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 1.0.6
* @version 1.0.7
*/
class Selector implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Color/HexTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css\Color;
use PHPUnit\Framework\TestCase;

class HexTest extends \PHPUnit_Framework_TestCase
class HexTest extends TestCase
{

public function testHex()
Expand Down
3 changes: 2 additions & 1 deletion tests/Color/HslTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css\Color;
use PHPUnit\Framework\TestCase;

class HslTest extends \PHPUnit_Framework_TestCase
class HslTest extends TestCase
{

public function testHsl()
Expand Down
3 changes: 2 additions & 1 deletion tests/Color/RgbTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css\Color;
use PHPUnit\Framework\TestCase;

class RgbTest extends \PHPUnit_Framework_TestCase
class RgbTest extends TestCase
{

public function testRgb()
Expand Down
3 changes: 2 additions & 1 deletion tests/ColorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css\Color;
use PHPUnit\Framework\TestCase;

class ColorTest extends \PHPUnit_Framework_TestCase
class ColorTest extends TestCase
{

public function testCreateRgb()
Expand Down
3 changes: 2 additions & 1 deletion tests/CssTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css;
use PHPUnit\Framework\TestCase;

class CssTest extends \PHPUnit_Framework_TestCase
class CssTest extends TestCase
{

public function testConstructor()
Expand Down
3 changes: 2 additions & 1 deletion tests/MediaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css;
use PHPUnit\Framework\TestCase;

class MediaTest extends \PHPUnit_Framework_TestCase
class MediaTest extends TestCase
{

public function testConstructor()
Expand Down
3 changes: 2 additions & 1 deletion tests/SelectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Pop\Css\Test;

use Pop\Css;
use PHPUnit\Framework\TestCase;

class SelectorTest extends \PHPUnit_Framework_TestCase
class SelectorTest extends TestCase
{

public function testGetTabSize()
Expand Down

0 comments on commit 9bbb47c

Please sign in to comment.