Skip to content

Commit

Permalink
Laravel 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ivanov committed Mar 6, 2024
1 parent 45c1106 commit 270e8ba
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1]
php: [8.1, 8.2]
stability: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} / ${{ matrix.stability }}
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
command: composer update --prefer-dist --${{ matrix.stability }} --no-interaction --no-progress --ansi

- name: Run tests
run: vendor/bin/phpunit --verbose --colors=always --coverage-clover ./build/logs/clover.xml
run: vendor/bin/phpunit --colors=always --coverage-clover ./build/logs/clover.xml

- name: Code coverage
uses: codecov/codecov-action@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.idea
/.phpunit.cache
/.vscode
/vendor
.DS_Store
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Laravel-specific and pure PHP Helper Functions.

| Laravel | Helper Functions |
|---------|-----------------------------------------------------------------------------|
| 11.x | _[Support](https://buymeacoffee.com/dmitry.ivanov)_|
| 10.x | [10.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/10.x) |
| 9.x | [9.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/9.x) |
| 8.x | [8.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/8.x) |
| 7.x | [7.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/7.x) |
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"email": "dmitry.g.ivanov@gmail.com"
}],
"require": {
"php": "^8.0.2",
"php": "^8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"illuminate/support": "^9.0",
"nesbot/carbon": "^2.53.1",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"symfony/var-dumper": "^6.0",
"illuminate/support": "^10.0",
"nesbot/carbon": "^2.67",
"symfony/filesystem": "^6.2",
"symfony/finder": "^6.2",
"symfony/process": "^6.2",
"symfony/var-dumper": "^6.2",
"spatie/array-to-xml": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"illuminated/testing-tools": "^9.0"
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.5.1",
"illuminated/testing-tools": "^10.0"
},
"autoload": {
"files": [
Expand Down
13 changes: 5 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
backupStaticProperties="false"
beStrictAboutTestsThatDoNotTestAnything="false"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<testsuites>
<testsuite name="Laravel Helper Functions Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>

<coverage processUncoveredFiles="true">
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<file>./src/autoload.php</file>
</exclude>
</coverage>
</source>
</phpunit>

0 comments on commit 270e8ba

Please sign in to comment.