6 Commits
2.1.0 ... v3.0

Author SHA1 Message Date
Victor Gonzalez
9980bc7e9a update to Testbench v7 & composer update 2022-05-17 07:02:05 -05:00
Jani Gyllenberg
9935cb78cb Merge pull request #32 from nullthoughts/dependabot/composer/league/flysystem-1.1.4
Bump league/flysystem from 1.1.3 to 1.1.4
2021-07-02 12:17:42 -04:00
Jani Gyllenberg
9ade30325c Merge pull request #33 from nullthoughts/github-actions-phpunit
Github Actions: PHPUnit
2021-07-02 12:16:48 -04:00
Ismo Vuorinen
effd3be10f composer update on php 7.4 2021-06-29 14:37:23 +03:00
412a03516b Github Actions: PHPUnit
Added Github Actions runner for PHPUnit tests.
It runs on every push and makes sure all contributions (be it from humans, or bots) pass our existing tests.
2021-06-29 13:49:20 +03:00
dependabot[bot]
730fe0e2ac Bump league/flysystem from 1.1.3 to 1.1.4
Bumps [league/flysystem](https://github.com/thephpleague/flysystem) from 1.1.3 to 1.1.4.
- [Release notes](https://github.com/thephpleague/flysystem/releases)
- [Changelog](https://github.com/thephpleague/flysystem/blob/2.x/CHANGELOG.md)
- [Commits](https://github.com/thephpleague/flysystem/compare/1.1.3...1.1.4)

---
updated-dependencies:
- dependency-name: league/flysystem
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-29 04:05:34 +00:00
4 changed files with 3249 additions and 1350 deletions

20
.github/workflows/phpunit.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: PHPUnit
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- name: PHPUnit Tests
uses: php-actions/phpunit@v2
with:
php_extensions: xdebug mbstring
bootstrap: vendor/autoload.php
configuration: phpunit.xml
args: --coverage-text

View File

@@ -10,10 +10,10 @@
],
"require": {
"ext-json": "*",
"php": "^7.2|^8.0"
"php": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^5.0"
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4" : {

4552
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,21 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false"
bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false"
stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>