diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 96604ec..8303d3f 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -20,6 +20,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + #- name: Validate composer.json and composer.lock # run: composer validate diff --git a/README.md b/README.md index 681f6e8..d11b98e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Install `pop-css` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-css" : "^2.0.0" + "popphp/pop-css" : "^2.0.1" } [Top](#pop-css) diff --git a/composer.json b/composer.json index 65a01ae..a62a27a 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ ], "require": { "php": ">=8.2.0", - "popphp/pop-color": "^1.0.0" + "popphp/pop-color": "^1.0.1" }, "autoload": { "psr-4": { diff --git a/src/AbstractCss.php b/src/AbstractCss.php index c099fc5..c85af76 100644 --- a/src/AbstractCss.php +++ b/src/AbstractCss.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ abstract class AbstractCss implements \ArrayAccess, \Countable, \IteratorAggregate { diff --git a/src/Comment.php b/src/Comment.php index ab78c83..fc100ba 100644 --- a/src/Comment.php +++ b/src/Comment.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ class Comment { diff --git a/src/CommentTrait.php b/src/CommentTrait.php index 8782d35..a2a4dfd 100644 --- a/src/CommentTrait.php +++ b/src/CommentTrait.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ trait CommentTrait { diff --git a/src/Css.php b/src/Css.php index ed8ccd1..bdda10c 100644 --- a/src/Css.php +++ b/src/Css.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ class Css extends AbstractCss { diff --git a/src/Exception.php b/src/Exception.php index 48cbd28..6287f50 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ class Exception extends \Exception {} diff --git a/src/Media.php b/src/Media.php index e406a61..c0258c4 100644 --- a/src/Media.php +++ b/src/Media.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ class Media extends AbstractCss { diff --git a/src/Selector.php b/src/Selector.php index 0aec336..9234767 100644 --- a/src/Selector.php +++ b/src/Selector.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.0.0 + * @version 2.0.1 */ class Selector implements \ArrayAccess, \Countable, \IteratorAggregate {