The (hopefully) most comprehensive collection of constants for PHP
- Using magic numbers no one remembers the meaning of?
Code smell - Repeating yourself by using the same values over and over again?
Code smell - Having a typo in one of the repeated values?
Dangerous --> Bugs - Having to look up stuff?
Time-consuming - Updating values that changed all over the code base?
Time-consuming - Bloating your classes with constants and maintaining them?
Time-consuming
A growing amount of useful constants to use in your application. Right now CONSTANTINE contains >13.9k constants.
- PHP >=7.1
- nothing else, zero dependency
The preferred way to install CONSTANTINE is through composer.
Either run
php composer.phar require --prefer-dist tomlutzenberger/constantine "*"
or add
"tomlutzenberger/constantine": "*"
to the required
section of your composer.json
file.
Simple and straight-forward:
<?php
use TomLutzenberger\Constantine\Protocol\HttpStatusCode;
class MyController
{
public function notFoundAction(): int
{
return HttpStatusCode::NOT_FOUND;
}
}
This package is published under the MIT License and can be used for any commercial and personal projects.