├── .gitattributes ├── .gitignore ├── .local.vimrc ├── .scrutinizer.yml ├── Assertion.php ├── Auth.php ├── BaseEntity.php ├── BaseRepository.php ├── Berksfile ├── Berksfile.lock ├── CONTRIBUTING.md ├── Collection.php ├── ComponentInterface.php ├── Currency ├── Currency.php └── Dollar.php ├── DataMapper.php ├── DataMapperEntity.php ├── DateFormat ├── DateFormat.php ├── EU.php ├── Iso8601.php ├── MySQL.php └── US.php ├── File.php ├── FileLogger.php ├── Format.php ├── Formatter.php ├── HTMLFormatter.php ├── IService.php ├── IoC.php ├── LICENSE.md ├── Log.php ├── LogEntry.php ├── Logger.php ├── Markdown.php ├── Model.php ├── MysqlModel.php ├── Observable.php ├── Observer.php ├── Observer ├── BaseObserver.php └── BaseSubject.php ├── PDOAdapter.php ├── PDORepository.php ├── Query.php ├── README.md ├── RandData.php ├── RedisRepository.php ├── Repository.php ├── Request.php ├── Response.php ├── Rest.php ├── RestInterface.php ├── Router.php ├── Sanitize.php ├── SqlStatement.php ├── StdOutLogger.php ├── TAPFormatter.php ├── Template.php ├── Vagrantfile ├── Vagrantfile.chef ├── ValueObject.php ├── View.php ├── chef.json-old ├── composer.json ├── composer.lock ├── gulpfile.js ├── package.json ├── package.xml ├── phpspec.yml ├── phpunit.xml ├── spec ├── Devtools │ ├── AuthSpec.php │ ├── ComponentSpec.php │ ├── Currency │ │ └── DollarSpec.php │ ├── DateFormat │ │ └── USSpec.php │ ├── FileLoggerSpec.php │ ├── FileSpec.php │ ├── FormatSpec.php │ ├── HTMLFormatterSpec.php │ ├── LogSpec.php │ ├── MarkdownSpec.php │ ├── MysqlModelSpecNoRun.php │ ├── Observer │ │ └── BaseSubjectSpec.php │ ├── PDOAdapterSpec.php │ ├── PDORepositorySpec.php │ ├── RedisRepositorySpec.php │ ├── ResponseSpec.php │ ├── RestSpec.php │ ├── RouterSpec.php │ ├── SanitizeSpec.php │ ├── StdOutLoggerSpec.php │ ├── TAPFormatterSpec.php │ ├── TemplateSpec.php │ ├── ValueObjectSpec.php │ └── ViewSpec.php ├── failed.jpg ├── helpers │ └── Redis.php └── success.jpg └── tests ├── ApiTest.php ├── AuthTest.php ├── AutoloadTest.php ├── FirebirdModelTest.php ├── LogTest.php ├── MarkdownTest.php ├── MysqlModelTest.php ├── QueryTest.php ├── RandDataTest.php ├── RedisModelTest.php ├── TemplateTest.php ├── ajaxFail.php ├── ajaxSuccess.php ├── autoload.php ├── autoloader.orig.php ├── responseTest.php ├── test.html └── test.markdown /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.local.vimrc: -------------------------------------------------------------------------------- 1 | :cd :p:h 2 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /Assertion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Assertion.php -------------------------------------------------------------------------------- /Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Auth.php -------------------------------------------------------------------------------- /BaseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/BaseEntity.php -------------------------------------------------------------------------------- /BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/BaseRepository.php -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Berksfile -------------------------------------------------------------------------------- /Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Berksfile.lock -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Collection.php -------------------------------------------------------------------------------- /ComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/ComponentInterface.php -------------------------------------------------------------------------------- /Currency/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Currency/Currency.php -------------------------------------------------------------------------------- /Currency/Dollar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Currency/Dollar.php -------------------------------------------------------------------------------- /DataMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DataMapper.php -------------------------------------------------------------------------------- /DataMapperEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DataMapperEntity.php -------------------------------------------------------------------------------- /DateFormat/DateFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DateFormat/DateFormat.php -------------------------------------------------------------------------------- /DateFormat/EU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DateFormat/EU.php -------------------------------------------------------------------------------- /DateFormat/Iso8601.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DateFormat/Iso8601.php -------------------------------------------------------------------------------- /DateFormat/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DateFormat/MySQL.php -------------------------------------------------------------------------------- /DateFormat/US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/DateFormat/US.php -------------------------------------------------------------------------------- /File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/File.php -------------------------------------------------------------------------------- /FileLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/FileLogger.php -------------------------------------------------------------------------------- /Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Format.php -------------------------------------------------------------------------------- /Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Formatter.php -------------------------------------------------------------------------------- /HTMLFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/HTMLFormatter.php -------------------------------------------------------------------------------- /IService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/IService.php -------------------------------------------------------------------------------- /IoC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/IoC.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Log.php -------------------------------------------------------------------------------- /LogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/LogEntry.php -------------------------------------------------------------------------------- /Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Logger.php -------------------------------------------------------------------------------- /Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Markdown.php -------------------------------------------------------------------------------- /Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Model.php -------------------------------------------------------------------------------- /MysqlModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/MysqlModel.php -------------------------------------------------------------------------------- /Observable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Observable.php -------------------------------------------------------------------------------- /Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Observer.php -------------------------------------------------------------------------------- /Observer/BaseObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Observer/BaseObserver.php -------------------------------------------------------------------------------- /Observer/BaseSubject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Observer/BaseSubject.php -------------------------------------------------------------------------------- /PDOAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/PDOAdapter.php -------------------------------------------------------------------------------- /PDORepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/PDORepository.php -------------------------------------------------------------------------------- /Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Query.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/README.md -------------------------------------------------------------------------------- /RandData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/RandData.php -------------------------------------------------------------------------------- /RedisRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/RedisRepository.php -------------------------------------------------------------------------------- /Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Repository.php -------------------------------------------------------------------------------- /Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Request.php -------------------------------------------------------------------------------- /Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Response.php -------------------------------------------------------------------------------- /Rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Rest.php -------------------------------------------------------------------------------- /RestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/RestInterface.php -------------------------------------------------------------------------------- /Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Router.php -------------------------------------------------------------------------------- /Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Sanitize.php -------------------------------------------------------------------------------- /SqlStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/SqlStatement.php -------------------------------------------------------------------------------- /StdOutLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/StdOutLogger.php -------------------------------------------------------------------------------- /TAPFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/TAPFormatter.php -------------------------------------------------------------------------------- /Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Template.php -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Vagrantfile.chef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/Vagrantfile.chef -------------------------------------------------------------------------------- /ValueObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/ValueObject.php -------------------------------------------------------------------------------- /View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/View.php -------------------------------------------------------------------------------- /chef.json-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/chef.json-old -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/composer.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/package.json -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/package.xml -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/phpunit.xml -------------------------------------------------------------------------------- /spec/Devtools/AuthSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/AuthSpec.php -------------------------------------------------------------------------------- /spec/Devtools/ComponentSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/ComponentSpec.php -------------------------------------------------------------------------------- /spec/Devtools/Currency/DollarSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/Currency/DollarSpec.php -------------------------------------------------------------------------------- /spec/Devtools/DateFormat/USSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/DateFormat/USSpec.php -------------------------------------------------------------------------------- /spec/Devtools/FileLoggerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/FileLoggerSpec.php -------------------------------------------------------------------------------- /spec/Devtools/FileSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/FileSpec.php -------------------------------------------------------------------------------- /spec/Devtools/FormatSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/FormatSpec.php -------------------------------------------------------------------------------- /spec/Devtools/HTMLFormatterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/HTMLFormatterSpec.php -------------------------------------------------------------------------------- /spec/Devtools/LogSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/LogSpec.php -------------------------------------------------------------------------------- /spec/Devtools/MarkdownSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/MarkdownSpec.php -------------------------------------------------------------------------------- /spec/Devtools/MysqlModelSpecNoRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/MysqlModelSpecNoRun.php -------------------------------------------------------------------------------- /spec/Devtools/Observer/BaseSubjectSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/Observer/BaseSubjectSpec.php -------------------------------------------------------------------------------- /spec/Devtools/PDOAdapterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/PDOAdapterSpec.php -------------------------------------------------------------------------------- /spec/Devtools/PDORepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/PDORepositorySpec.php -------------------------------------------------------------------------------- /spec/Devtools/RedisRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/RedisRepositorySpec.php -------------------------------------------------------------------------------- /spec/Devtools/ResponseSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/ResponseSpec.php -------------------------------------------------------------------------------- /spec/Devtools/RestSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/RestSpec.php -------------------------------------------------------------------------------- /spec/Devtools/RouterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/RouterSpec.php -------------------------------------------------------------------------------- /spec/Devtools/SanitizeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/SanitizeSpec.php -------------------------------------------------------------------------------- /spec/Devtools/StdOutLoggerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/StdOutLoggerSpec.php -------------------------------------------------------------------------------- /spec/Devtools/TAPFormatterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/TAPFormatterSpec.php -------------------------------------------------------------------------------- /spec/Devtools/TemplateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/TemplateSpec.php -------------------------------------------------------------------------------- /spec/Devtools/ValueObjectSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/ValueObjectSpec.php -------------------------------------------------------------------------------- /spec/Devtools/ViewSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/Devtools/ViewSpec.php -------------------------------------------------------------------------------- /spec/failed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seagoj/devtools/HEAD/spec/failed.jpg -------------------------------------------------------------------------------- /spec/helpers/Redis.php: -------------------------------------------------------------------------------- 1 |