├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist └── src ├── InvalidArgumentException.php ├── MemoryLimit.php ├── Size.php ├── Unit.php └── Unit ├── Binary ├── Gibibyte.php ├── Gigabyte.php ├── Kibibyte.php ├── Kilobyte.php ├── Mebibyte.php └── Megabyte.php └── Byte.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/MemoryLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/MemoryLimit.php -------------------------------------------------------------------------------- /src/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Size.php -------------------------------------------------------------------------------- /src/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit.php -------------------------------------------------------------------------------- /src/Unit/Binary/Gibibyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Gibibyte.php -------------------------------------------------------------------------------- /src/Unit/Binary/Gigabyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Gigabyte.php -------------------------------------------------------------------------------- /src/Unit/Binary/Kibibyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Kibibyte.php -------------------------------------------------------------------------------- /src/Unit/Binary/Kilobyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Kilobyte.php -------------------------------------------------------------------------------- /src/Unit/Binary/Mebibyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Mebibyte.php -------------------------------------------------------------------------------- /src/Unit/Binary/Megabyte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Binary/Megabyte.php -------------------------------------------------------------------------------- /src/Unit/Byte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlitowitz/php-memory/HEAD/src/Unit/Byte.php --------------------------------------------------------------------------------