PHP Package: symfony/security-acl

Symfony security-acl provides access control lists for security. It integrates with Symfony framework seamlessly.

Current Version: 3.3.3
Last Updated: 2023-12-04
PHP Requirement: >=7.2.5
Dependencies:
symfony/security-core
symfony/security-http
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Symfony security-acl is a powerful library for managing access control lists in Symfony applications. It allows fine-grained control over user permissions and roles. With security-acl, you can easily secure your application by defining complex access rules. This library simplifies the implementation of security features and ensures a robust security layer for your Symfony projects.

🔗 View on GitHub

Download Latest Version: 3.3.3

Download Download v3.3.3

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/symfony/security-acl/3.3.3/loader.php';
require_once 'libs/symfony/security-core/7.3.0/loader.php';
require_once 'libs/symfony/security-http/7.3.0/loader.php';

use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Http\Firewall\AccessListener;

$obj = new UsernamePasswordToken();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.