Libraries tagged by mouf
mouf/mouf-installer
398725 Downloads
The Mouf-installer package is a composer in charge of installing any package with the 'mouf-library' type.
mouf/utils.constants.secret
380249 Downloads
This package contains a simple installer for Mouf that will create a constant 'SECRET' in your project and initialize it to some random value.
mouf/utils.constants.debug
367848 Downloads
This package contains a simple installer for Mouf that will create a constant 'DEBUG' in your project and initialize it to true. Useful for packages supporting a 'debug' mode.
mouf/utils.common.url-interface
359215 Downloads
This package contains an interface used by many objects to say they represent a URL. The concept is very simple, the object implements a getUrl method, and that's it!
mouf/utils.cache.purge-ui
190000 Downloads
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.
mouf/utils.cache.in-memory-cache
361756 Downloads
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.
mouf/utils.cache.file-cache
380750 Downloads
This package contains a cache mechanism that relies on temporary files.
mouf/utils.cache.cache-interface
381833 Downloads
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.
mouf/utils.cache.apc-cache
380246 Downloads
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.
mouf/utils.action.common-action
359263 Downloads
This package contains common classes that implement the ActionInterface interface (from the mouf/utils.action.action-interface package).
mouf/utils.action.action-interface
372491 Downloads
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.
mouf/mvc.splash-common
362056 Downloads
Splash is a PHP router. It takes an HTTP request and dispatches it to the appropriate controller.
mouf/mvc.splash
239810 Downloads
Integration of Splash with the Mouf framework.
mouf/html.utils.weblibrarymanager.component-installer
361645 Downloads
This Mouf package contains a Composer installer that will automatically create WebLibrary instances when a 'component' package is installed in Composer. It is designed to be used only with Mouf's WebLibraryManager.
mouf/html.utils.weblibrarymanager
364029 Downloads
The Javascript/CSS library manager is a PHP class in charge of keeping track of the JS and CSS files that have been included so far in a web page. Basically, you tell the Javascript/CSS library manager to import a JS/CSS file and it will make sure it is included, only once, and that all dependencies are included as well.