mouf member since: Jun 20, 2012
mouf's packages
-
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.
-
PHP
mouf/utils.cache.no-cache
This package contains a cache mechanism that... does not cache anything. This is useful if another component requires a cache mechanism and if you don't want to provide any (for development purpose...).
-
PHP
mouf/utils.cache.purge-ui
This package contains a user interface that will add a 'Purge cache' button to Mouf, allowing you to purge any PSR-6, PSR-16, Doctrine and Mouf cache easily.
-
PHP
mouf/utils.cache.redis-cache
This package contains a cache mechanism that uses Redis to cache data.
-
PHP
mouf/utils.cache.session-cache
This package contains a cache mechanism that relies on the session of the user. Therefore, the cache is a bit special, since it is kept for the duration of the session, and is only accessible by the current user. The session has to be started (using session_start()).