mouf member since: Jun 20, 2012
mouf's packages
-
PHP
mouf/security.user-management-ui-interface
The interfaces to implement when working with mouf/security.user-management-ui.
-
PHP
mouf/security.userfiledao
This package contains an implementation of a UserDao, that stores the application users in a simple PHP file. It can be used together with the MoufUserService to provide easy access management to an application. Since the users are stored in a PHP file, this very special DAO does not require a database!
-
PHP
mouf/security.userservice
A set of PHP class to manage log-in and log-out of web applications and that integrates with Mouf.
-
PHP
mouf/security.userservice-splash
This package contains a set of class to bind the Splash MVC framework (>=v4.0) with the UserService component. It features: a @Logged annotation to restrict access to logged users only.
-
PHP
mouf/silex-middleware
This package provides a StackPHP middleware that can be used to plug a Silex application
-
PHP
mouf/symfony-middleware
This package provides a StackPHP middleware that can be used to use a Symfony application as a middleware (instead of an app)
-
-
PHP
mouf/utils.action.action-interface
This package contains an interface used by many objects to say they can do stuff. Actually, they can perform one particular action and has been designed for that. The action performed is completely up to the implementer (sending a mail, storing a result in database, displaying something on the screen...) The concept is very simple, and very powerful at the same time.
-
PHP
mouf/utils.action.common-action
This package contains common classes that implement the ActionInterface interface (from the mouf/utils.action.action-interface package).
-
PHP
mouf/utils.cache.apc-cache
This package contains a cache mechanism that relies on the APC caching system. For this cache to work, the APC Pecl package must be enabled.
-
PHP
mouf/utils.cache.cache-interface
This package only contains the interface that must be implemented by caching classes. Unless you want to implement your own caching method, you should import a cache package that will use this interface. For instance, common.utils.session-cache, or common.utils.file-cache.
-
PHP
mouf/utils.cache.file-cache
This package contains a cache mechanism that relies on temporary files.
-
PHP
mouf/utils.cache.in-memory-cache
This package contains the most basic cache mechanism. It stores cache items in an array. It means the cache is flushed as soon as the script returns. It is very basic, but also very fast. You will usually use this mechanism with another one just behind.
-
PHP
mouf/utils.cache.memcache-cache
This package contains a cache mechanism that relies on the Memcached database. For this cache to work, the memcache Pecl package must be enabled.
-
PHP
mouf/utils.cache.memcached-cache
This package contains a cache mechanism that relies on the Memcached database. For this cache to work, the memcached Pecl package must be enabled.