├── .htaccess ├── README.md ├── RoboFile.php ├── assets ├── css │ ├── app.css │ └── stylish-portfolio.css └── script │ └── app.js ├── index.php ├── route.php └── source ├── .gitignore ├── CODESTYLE.md ├── RoboFile.php ├── _build.php ├── _lp ├── config │ ├── core.php │ └── exception.php ├── lib │ ├── Lazyphp │ │ ├── Core │ │ │ ├── Application.php │ │ │ ├── Database.php │ │ │ ├── Datameta.php │ │ │ ├── Dispatcher.php │ │ │ ├── Ldo.php │ │ │ ├── LpException.php │ │ │ ├── LpObject.php │ │ │ └── Object.php │ │ └── Doc │ │ │ ├── Builder.php │ │ │ ├── Extractor.php │ │ │ └── Resources │ │ │ └── views │ │ │ └── template │ │ │ └── index.html │ ├── flight │ │ ├── Engine.php │ │ ├── Flight.php │ │ ├── autoload.php │ │ ├── core │ │ │ ├── Dispatcher.php │ │ │ └── Loader.php │ │ ├── net │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ └── Router.php │ │ ├── template │ │ │ └── View.php │ │ └── util │ │ │ └── Collection.php │ └── functions.php └── lp.init.php ├── _metatoy └── placeholder ├── behat.yml ├── compiled └── route.php ├── composer.full.json ├── composer.json ├── composer.lock ├── config.yaml ├── config ├── app.php ├── database.php └── exception.php ├── controller └── LazyphpController.php ├── docs └── index.html ├── features ├── bootstrap │ └── FeatureContext.php └── user.feature ├── lib └── functions.php ├── migrations └── 20140422224730_lazy_php_db.php ├── mink.txt ├── phinx.yml ├── phpunit.xml ├── sample.htaccess ├── tests ├── app │ └── dbTest.php ├── data │ └── dev.sql ├── framework │ ├── dbtClass.php │ ├── functionTest.php │ └── sampleTest.php └── loader.php ├── upload2sae.php └── view └── web ├── default.tpl.php ├── footer.tpl.php ├── header.tpl.php ├── info.tpl.php └── main └── lazyphp_index.tpl.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/RoboFile.php -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/assets/css/app.css -------------------------------------------------------------------------------- /assets/css/stylish-portfolio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/assets/css/stylish-portfolio.css -------------------------------------------------------------------------------- /assets/script/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/index.php -------------------------------------------------------------------------------- /route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/route.php -------------------------------------------------------------------------------- /source/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ -------------------------------------------------------------------------------- /source/CODESTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/CODESTYLE.md -------------------------------------------------------------------------------- /source/RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/RoboFile.php -------------------------------------------------------------------------------- /source/_build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_build.php -------------------------------------------------------------------------------- /source/_lp/config/core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/config/core.php -------------------------------------------------------------------------------- /source/_lp/config/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/config/exception.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/Application.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/Database.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/Datameta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/Datameta.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/Dispatcher.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/Ldo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/Ldo.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/LpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/LazyPHP4/HEAD/source/_lp/lib/Lazyphp/Core/LpException.php -------------------------------------------------------------------------------- /source/_lp/lib/Lazyphp/Core/LpObject.php: -------------------------------------------------------------------------------- 1 |