Skip to content

Commit

Permalink
Adjustments after merging the 1.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Mar 12, 2024
1 parent ba219c4 commit d06389a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

# 2.x Series

- Dropped Laravel 9 support
- Dropped PHP 8.0 & 8.1 support
- Added PHP 8.3 support
- Dropped PHP 8.1 support
- Added the `Ownable` interface to be used by Models
- Added the `HasRoles::havingPermission()` query scope that accept a single `string|Permission` parameter
- Added the `HasRoles::havingRole()` query scope that accept a single `string|Role` parameter
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "konekt/acl",
"description": "Concord Module for Permission handling (Laravel 10)",
"description": "Concord Module for Permission handling (Laravel 10 - 11)",
"keywords": [
"laravel",
"eloquent",
Expand Down
12 changes: 6 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<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">
<testsuites>
<testsuite name="Acl Module Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit d06389a

Please sign in to comment.