Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Laravel 11
  • Loading branch information
R3VoLuT1OneR committed Apr 26, 2025
commit 8198b85d3bb504e789310ff084034ab12273231b
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ composer.lock

.idea
laravel-doctrine-orm.iml

.phpunit.result.cache
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Laravel Doctrine ACL

<img src="https://cloud.githubusercontent.com/assets/7728097/12727113/9e4fbc48-c91b-11e5-9987-e263eee9db12.jpg"/>
Fork of the https://github.com/laravel-doctrine/acl that is not active anymore.

[![GitHub release](https://img.shields.io/github/release/laravel-doctrine/acl.svg?style=flat-square)](https://packagist.org/packages/laravel-doctrine/acl)
[![Github actions](https://github.com/laravel-doctrine/acl/workflows/CI/badge.svg?branch=1.x)](https://github.com/laravel-doctrine/acl/actions?query=workflow%3ACI+branch%3A1.x)
[![Packagist](https://img.shields.io/packagist/dm/laravel-doctrine/acl.svg?style=flat-square)](https://packagist.org/packages/laravel-doctrine/acl)
[![Packagist](https://img.shields.io/packagist/dt/laravel-doctrine/acl.svg?style=flat-square)](https://packagist.org/packages/laravel-doctrine/acl)
---

*ACL functionality for Laravel powered by Doctrine*

Expand All @@ -22,3 +19,5 @@ Version | Supported Laravel Versions
~1.2.0 | 7.x
~1.3.0 | 8.x
^1.4.0 | 6.x, 7.x, 8.x, 9.x, 10.x
^1.5.0 | 11.x

16 changes: 10 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "laravel-doctrine/acl",
"name": "sowl/laravel-doctrine-acl",
"type": "library",
"description": "Doctrine ACL for Doctrine 2 and Laravel",
"license": "MIT",
Expand All @@ -20,14 +20,18 @@
{
"name": "Patrick Brouwers",
"email": "[email protected]"
},
{
"name": "Pavlo Zhytomyrskyi",
"email": "[email protected]"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

}
],
"require": {
"php": "^7.2.5|^8.0",
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"php": "^8.2",
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"laravel-doctrine/orm": "^1|^2.0",
"doctrine/annotations": "^1.10|^2.0"
},
Expand Down