Skip to content
This repository was archived by the owner on Mar 20, 2022. It is now read-only.

Commit 358f42a

Browse files
committed
wip
1 parent de12730 commit 358f42a

File tree

4 files changed

+33
-35
lines changed

4 files changed

+33
-35
lines changed

.github/workflows/run-tests.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
php: [7.4, 7.3]
16-
laravel: [7.*, 6.*]
16+
laravel: [8.*, 7.*, 6.*]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
os: [ubuntu-latest]
1919
include:
20+
- laravel: 8.*
21+
testbench: 6.*
2022
- laravel: 7.*
2123
testbench: 5.*
2224
- laravel: 6.*
@@ -26,7 +28,7 @@ jobs:
2628

2729
steps:
2830
- name: Checkout code
29-
uses: actions/checkout@v1
31+
uses: actions/checkout@v2
3032

3133
- name: Setup PHP
3234
uses: shivammathur/setup-php@v2
@@ -41,4 +43,4 @@ jobs:
4143
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
4244
4345
- name: Execute tests
44-
run: vendor/bin/phpunit
46+
run: vendor/bin/phpunit

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-plesk` will be documented in this file
44

5+
## 0.7.0 - 2020-09-18
6+
7+
- Adding support for Laravel 8
8+
59
## 0.6.0 - 2020-02-24
610

711
- Adding support for Laravel 7

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "nickurt/laravel-plesk",
3-
"description": "Plesk Onyx 17.8 for Laravel 6.x/7.x",
3+
"description": "Plesk Onyx 17.8 for Laravel 6.x/7.x/8.x",
44
"keywords": ["plesk", "plesk onyx", "plesk onyx 17.8", "laravel"],
55
"license": "MIT",
66
"require": {
77
"php": "^7.2",
8-
"laravel/framework": "^6.0|^7.0",
9-
"guzzlehttp/guzzle": "6.*"
8+
"laravel/framework": "^6.0|^7.0|^8.0",
9+
"guzzlehttp/guzzle": "^6.3|^7.0.1"
1010
},
1111
"require-dev": {
12-
"phpunit/phpunit" : "^7.5|^8.3",
13-
"orchestra/testbench": "^4.0|^5.0"
12+
"phpunit/phpunit": "^7.5|^8.0|^9.0",
13+
"orchestra/testbench": "^4.0|^5.0|^6.0"
1414
},
1515
"autoload": {
1616
"psr-4": {

phpunit.xml.dist

+19-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
verbose="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false">
12-
<testsuites>
13-
<testsuite name="Laravel Plesk Test Suite">
14-
<directory>tests</directory>
15-
</testsuite>
16-
</testsuites>
17-
<filter>
18-
<whitelist>
19-
<directory suffix=".php">src/</directory>
20-
</whitelist>
21-
</filter>
22-
<logging>
23-
<log type="tap" target="build/report.tap"/>
24-
<log type="junit" target="build/report.junit.xml"/>
25-
<log type="coverage-html" target="build/coverage"/>
26-
<log type="coverage-text" target="build/coverage.txt"/>
27-
<log type="coverage-clover" target="build/logs/clover.xml"/>
28-
</logging>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">src/</directory>
6+
</include>
7+
<report>
8+
<clover outputFile="build/logs/clover.xml"/>
9+
<html outputDirectory="build/coverage"/>
10+
<text outputFile="build/coverage.txt"/>
11+
</report>
12+
</coverage>
13+
<testsuites>
14+
<testsuite name="Laravel Plesk Test Suite">
15+
<directory>tests</directory>
16+
</testsuite>
17+
</testsuites>
18+
<logging>
19+
<junit outputFile="build/report.junit.xml"/>
20+
</logging>
2921
</phpunit>

0 commit comments

Comments
 (0)