Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Commit

Permalink
Release 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette authored Apr 21, 2021
2 parents aa6af18 + 516061e commit bfffb85
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
fail-fast: false
matrix:
php_versions: ['7.1', '7.2', '7.3', '7.4']
support_versions: ['4.3.4', '4.4.1', '4.5.0']
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -31,6 +32,9 @@ jobs:
coverage: xdebug
tools: pecl

- name: Set Dependency version
run: composer require "userfrosting/support:${{ matrix.support_versions }}" --no-update

- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [6.2.0]
- Use proper namespace for tests
- Update dependency

## [6.1.1]
- Replaced Travis & Appveyor with GitHub Action for build
- Upgrade deprecation in tests
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
}
],
"require": {
"php": ">=7.1",
"userfrosting/support": "~4.3.0 | ~4.4.0"
"php": "^7.1",
"userfrosting/support": "~4.3.0 | ~4.4.0 | ~4.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
Expand All @@ -32,5 +32,10 @@
"psr-4": {
"UserFrosting\\Assets\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Assets\\Tests\\": "tests"
}
}
}
2 changes: 2 additions & 0 deletions tests/AssetBundles/GulpBundleAssetsCompiledBundlesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @license https://github.com/userfrosting/assets/blob/master/LICENSE.md (MIT License)
*/

namespace UserFrosting\Tests\Assets\AssetBundles;

use PHPUnit\Framework\TestCase;
use UserFrosting\Assets\AssetBundles\GulpBundleAssetsCompiledBundles;
use UserFrosting\Assets\Assets;
Expand Down
2 changes: 2 additions & 0 deletions tests/AssetBundles/GulpBundleAssetsRawBundlesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @license https://github.com/userfrosting/assets/blob/master/LICENSE.md (MIT License)
*/

namespace UserFrosting\Tests\Assets\AssetBundles;

use PHPUnit\Framework\TestCase;
use UserFrosting\Assets\AssetBundles\GulpBundleAssetsRawBundles;
use UserFrosting\Assets\Assets;
Expand Down
2 changes: 2 additions & 0 deletions tests/AssetsTemplatePluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @license https://github.com/userfrosting/assets/blob/master/LICENSE.md (MIT License)
*/

namespace UserFrosting\Tests\Assets;

use PHPUnit\Framework\TestCase;
use UserFrosting\Assets\AssetBundles\GulpBundleAssetsRawBundles;
use UserFrosting\Assets\Assets;
Expand Down
2 changes: 2 additions & 0 deletions tests/AssetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @license https://github.com/userfrosting/assets/blob/master/LICENSE.md (MIT License)
*/

namespace UserFrosting\Tests\Assets;

use PHPUnit\Framework\TestCase;
use UserFrosting\Assets\AssetBundles\GulpBundleAssetsRawBundles;
use UserFrosting\Assets\Assets;
Expand Down
2 changes: 2 additions & 0 deletions tests/ServeAsset/SlimServeAssetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @license https://github.com/userfrosting/assets/blob/master/LICENSE.md (MIT License)
*/

namespace UserFrosting\Tests\Assets\ServeAsset;

use PHPUnit\Framework\TestCase;
use Slim\Http\Environment;
use Slim\Http\Request;
Expand Down

0 comments on commit bfffb85

Please sign in to comment.