Libraries tagged by mouf
mouf/mvc.splash-common
357230 Downloads
Splash is a PHP router. It takes an HTTP request and dispatches it to the appropriate controller.
mouf/utils.session.optimistic-session-handler
2714 Downloads
Session handler that releases session lock quickly. Useful for multiple ajax calls on the same page.
mouf/html.widgets.statsgrid
9296 Downloads
This PHP package contains a HTML pivot table. You provide it with a data set and the list of columns and rows and it will display a nice pivot table.
mouf/html.htmlelement
367571 Downloads
This package contains the HtmlElementInterface interface that can be used to output HTML on a page. It also features base classes implementing this interface.
mouf/mouf-validators-interface
383758 Downloads
The mouf-validators-interface package contains interfaces your classes can implement to provide self-validation in the Mouf interface.
mouf/mouf-installer
392944 Downloads
The Mouf-installer package is a composer in charge of installing any package with the 'mouf-library' type.
mouf/utils.session.session-manager
252837 Downloads
This package is used to manage sessions. It provides a DefaultSessionManager class that you can use to configure your PHP sessions, and a SessionManagerInterface that you can implement if you want to provide your own session management.
mouf/utils.i18n.fine
170421 Downloads
Fine is a PHP internationalisation package. It will help you provide applications that support several languages. FINE means: Fine is not english :). Translation is performed using PHP mapping files, but you will have a nice graphical interface in the Mouf framework to write your own translated messages.
mouf/utils.constants.secret
374861 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
362460 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
354371 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
185565 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
356896 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
375823 Downloads
This package contains a cache mechanism that relies on temporary files.
mouf/utils.cache.cache-interface
376380 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.