/constantine

The (hopefully) most comprehensive collection of constants for PHP

Primary LanguagePHPMIT LicenseMIT

Constantine

GitHub release (latest SemVer) Packagist PHP Version Support Libraries.io dependency status for GitHub repo Packagist Downloads Maintenance
Quality Gate Status Technical Debt Code Smells Lines of Code GitHub

CONSTANTINE

The (hopefully) most comprehensive collection of constants for PHP

Why should I use it?

  • 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

What can I expect?

A growing amount of useful constants to use in your application. Right now CONSTANTINE contains >13.9k constants.

Requirements

  • PHP >=7.1
  • nothing else, zero dependency

Installation

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.

Usage

Simple and straight-forward:

<?php

use TomLutzenberger\Constantine\Protocol\HttpStatusCode;

class MyController
{
    public function notFoundAction(): int
    {
        return HttpStatusCode::NOT_FOUND;
    }
}

License

This package is published under the MIT License and can be used for any commercial and personal projects.