├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpcs.xml └── src ├── AutoLoader.php ├── Cache.php ├── Database.php ├── Exception ├── TemplateErrorException.php └── TransportMethodNotAllowed.php ├── Handler ├── ArrayHandler.php └── StreamHandlerMinimized.php ├── Hook.php ├── Http ├── Input.php ├── Response │ ├── ResponseAbstract.php │ ├── ResponseJSON.php │ ├── ResponseSerialize.php │ ├── ResponseText.php │ └── ResponseXML.php └── Transporter │ ├── MultipleTransport.php │ └── Transport.php ├── ImageResize.php ├── Interfaces ├── HttpInputInterface.php └── Record │ └── ArrayInterface.php ├── Logger.php ├── Module.php ├── Modules.php ├── Nop.php ├── Record └── Arrays │ ├── Collection.php │ ├── CollectionFetch.php │ ├── CollectionSerializable.php │ └── CollectionSortable.php ├── Session.php ├── SlimOverride ├── README.md ├── Request.php ├── RouteGroup.php ├── Router.php └── Uri.php ├── Template.php ├── Traits └── ArrayBracket.php ├── Translator.php └── Utilities ├── CommentDoc.php ├── Data ├── .gitkeep └── tlds-alpha-by-domain.txt ├── DatabaseUtility.php ├── DomainMail.php ├── PathHelper.php ├── README.md ├── Sanitation.php ├── TimeZone.php └── Validation.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/phpcs.xml -------------------------------------------------------------------------------- /src/AutoLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/AutoLoader.php -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Database.php -------------------------------------------------------------------------------- /src/Exception/TemplateErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Exception/TemplateErrorException.php -------------------------------------------------------------------------------- /src/Exception/TransportMethodNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Exception/TransportMethodNotAllowed.php -------------------------------------------------------------------------------- /src/Handler/ArrayHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Handler/ArrayHandler.php -------------------------------------------------------------------------------- /src/Handler/StreamHandlerMinimized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Handler/StreamHandlerMinimized.php -------------------------------------------------------------------------------- /src/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Hook.php -------------------------------------------------------------------------------- /src/Http/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Input.php -------------------------------------------------------------------------------- /src/Http/Response/ResponseAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Response/ResponseAbstract.php -------------------------------------------------------------------------------- /src/Http/Response/ResponseJSON.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Response/ResponseJSON.php -------------------------------------------------------------------------------- /src/Http/Response/ResponseSerialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Response/ResponseSerialize.php -------------------------------------------------------------------------------- /src/Http/Response/ResponseText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Response/ResponseText.php -------------------------------------------------------------------------------- /src/Http/Response/ResponseXML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Response/ResponseXML.php -------------------------------------------------------------------------------- /src/Http/Transporter/MultipleTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Transporter/MultipleTransport.php -------------------------------------------------------------------------------- /src/Http/Transporter/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Http/Transporter/Transport.php -------------------------------------------------------------------------------- /src/ImageResize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/ImageResize.php -------------------------------------------------------------------------------- /src/Interfaces/HttpInputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Interfaces/HttpInputInterface.php -------------------------------------------------------------------------------- /src/Interfaces/Record/ArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Interfaces/Record/ArrayInterface.php -------------------------------------------------------------------------------- /src/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Logger.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Modules.php -------------------------------------------------------------------------------- /src/Nop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Nop.php -------------------------------------------------------------------------------- /src/Record/Arrays/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Record/Arrays/Collection.php -------------------------------------------------------------------------------- /src/Record/Arrays/CollectionFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Record/Arrays/CollectionFetch.php -------------------------------------------------------------------------------- /src/Record/Arrays/CollectionSerializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Record/Arrays/CollectionSerializable.php -------------------------------------------------------------------------------- /src/Record/Arrays/CollectionSortable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Record/Arrays/CollectionSortable.php -------------------------------------------------------------------------------- /src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Session.php -------------------------------------------------------------------------------- /src/SlimOverride/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/SlimOverride/README.md -------------------------------------------------------------------------------- /src/SlimOverride/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/SlimOverride/Request.php -------------------------------------------------------------------------------- /src/SlimOverride/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/SlimOverride/RouteGroup.php -------------------------------------------------------------------------------- /src/SlimOverride/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/SlimOverride/Router.php -------------------------------------------------------------------------------- /src/SlimOverride/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/SlimOverride/Uri.php -------------------------------------------------------------------------------- /src/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Template.php -------------------------------------------------------------------------------- /src/Traits/ArrayBracket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Traits/ArrayBracket.php -------------------------------------------------------------------------------- /src/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Translator.php -------------------------------------------------------------------------------- /src/Utilities/CommentDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/CommentDoc.php -------------------------------------------------------------------------------- /src/Utilities/Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Utilities/Data/tlds-alpha-by-domain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/Data/tlds-alpha-by-domain.txt -------------------------------------------------------------------------------- /src/Utilities/DatabaseUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/DatabaseUtility.php -------------------------------------------------------------------------------- /src/Utilities/DomainMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/DomainMail.php -------------------------------------------------------------------------------- /src/Utilities/PathHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/PathHelper.php -------------------------------------------------------------------------------- /src/Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/README.md -------------------------------------------------------------------------------- /src/Utilities/Sanitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/Sanitation.php -------------------------------------------------------------------------------- /src/Utilities/TimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/TimeZone.php -------------------------------------------------------------------------------- /src/Utilities/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentagonalArchive/SlimHelperFrameWork/HEAD/src/Utilities/Validation.php --------------------------------------------------------------------------------