Skip to content

Commit d06389a

Browse files
Adjustments after merging the 1.x branch
1 parent ba219c4 commit d06389a

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

Changelog.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
# 2.x Series
44

5-
- Dropped Laravel 9 support
6-
- Dropped PHP 8.0 & 8.1 support
7-
- Added PHP 8.3 support
5+
- Dropped PHP 8.1 support
86
- Added the `Ownable` interface to be used by Models
97
- Added the `HasRoles::havingPermission()` query scope that accept a single `string|Permission` parameter
108
- Added the `HasRoles::havingRole()` query scope that accept a single `string|Role` parameter

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "konekt/acl",
3-
"description": "Concord Module for Permission handling (Laravel 10)",
3+
"description": "Concord Module for Permission handling (Laravel 10 - 11)",
44
"keywords": [
55
"laravel",
66
"eloquent",

phpunit.xml.dist

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">src/</directory>
6-
</include>
7-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
83
<testsuites>
94
<testsuite name="Acl Module Test Suite">
105
<directory>tests</directory>
116
</testsuite>
127
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">src/</directory>
11+
</include>
12+
</source>
1313
</phpunit>

0 commit comments

Comments
 (0)