Libraries tagged by fountain
openeuropa/oe_starter_content
10550 Downloads
OpenEuropa Drupal module that contains content types to quickstart a project.
objective-php/services-factory
117555 Downloads
Services container for Objective PHP
npo/phpunit-extension
8127 Downloads
Library containing PHPUnit helper classes
nilportugues/messagebus
10351 Downloads
MessageBus library. Contains CommandBus, QueryBus and EventBus and multiple middleware implementations.
myparcelcom/auth-module
25277 Downloads
Package for validating a JWT token and checking the contained scopes
mpyw/sharable-value-objects
83536 Downloads
Share value objects that contain the same primitive value as a singleton.
mouf/utils.value.value-interface
488548 Downloads
This package contains an interface used by many objects to say they represent a value that can be computed. The concept is very simple, and very powerful at the same time.
mouf/utils.log.psr.multi-logger
197915 Downloads
This package contains a PSR-3 compatible logger that wrap a set of loggers
mouf/utils.log.psr.errorlog_logger
389513 Downloads
This package contains a PSR-3 compatible logger that logs messages directly to the PHP error log (using the error_log PHP function)
mouf/utils.constants.secret
372018 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
359625 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
351619 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.common.sortable-interface
204018 Downloads
This package contains an interface used by objects to say they can sort data. The concept is very simple, the object implements a sort method that takes a key (the sort column) and a direction, and that's it!
mouf/utils.common.paginable-interface
204026 Downloads
This package contains an interface used by objects to say they can paginate data. The concept is very simple, the object implements a paginate method that takes a limit and an offset, and that's it!
mouf/utils.cache.in-memory-cache
354073 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.