- Notifications
You must be signed in to change notification settings - Fork39
Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.
License
laravel/serializable-closure
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This project is a fork of the excellentopis/closure: 3.x package. At Laravel, we decided to fork this package as the upcoming version4.x is a complete rewrite on top of theFFI extension. As Laravel is a web framework, and FFI is not enabled by default in web requests, this fork allows us to keep using the
3.xseries while adding support for new PHP versions.
Laravel Serializable Closure provides an easy and secure way toserialize closures in PHP.
RequiresPHP 7.4+
First, install Laravel Serializable Closure via theComposer package manager:
composer require laravel/serializable-closure
You may serialize a closure this way:
useLaravel\SerializableClosure\SerializableClosure;$closure =fn () =>'james';// RecommendedSerializableClosure::setSecretKey('secret');$serialized =serialize(newSerializableClosure($closure));$closure =unserialize($serialized)->getClosure();echo$closure();// james;
- Anonymous classes cannot be created within closures.
- Attributes cannot be used within closures.
- Serializing closures on REPL environments like Laravel Tinker is not supported.
- Serializing closures that reference objects with readonly properties is not supported.
Thank you for considering contributing to Serializable Closure! The contribution guide can be found in theLaravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by theCode of Conduct.
Please reviewour security policy on how to report security vulnerabilities.
Serializable Closure is open-sourced software licensed under theMIT license.
About
Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.