pascaldevink / phpcommons
Object wrappers around common used PHP functions.
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 1
Open Issues: 1
pkg:composer/pascaldevink/phpcommons
Requires
- php: >=5.3.2
Requires (Dev)
- phpunit/phpunit: ~3.7
This package is auto-updated.
Last update: 2020-03-25 12:59:16 UTC
README
This module wraps commonly used PHP functions so they can be used in a object oriented way. This way they:
- have a better and more concise structure
- are easier to use
- are easier to read
- are easy to replace
- are easy to test
- are easy to mock
Plus, they sometimes combine multiple native functions to make life easier in general.
Installation
PHP Commons can be installed using composer:
"require": {
"pascaldevink/php-commons": "dev-master"
}