├── .gitignore ├── CNAME ├── Composer.md ├── PHP ├── AccessingObjectInArrayStyle.md ├── ArrayObject.md ├── ArrayToObject.md ├── AutoloadingClasses.md ├── Chapter-3-Introduces.md ├── Class-Information-Functions.md ├── ExceptionHandling.md ├── Iterator.md ├── MethodChaining.md ├── ObjectCloning.md ├── Serialization.md └── chapter1-2.md ├── README.md ├── _config.yml ├── blade-template.md ├── coding-standard.md ├── coding-standard ├── RESTful.md ├── database.md ├── git.md ├── html-css.md ├── javascript.md ├── laravel-best-practices.md ├── laravel.md ├── php-best-practices │ ├── classes-properties-methods.md │ ├── comment.md │ ├── composer.md │ ├── dependency-injection.md │ ├── env.md │ ├── exception.md │ ├── function.md │ ├── if-else.md │ ├── index.md │ ├── name-rule.md │ ├── psr-1.md │ ├── standard-function.md │ ├── ternary-operator.md │ ├── unit-test.md │ └── variable.md ├── php.md ├── ruby-on-rails.md ├── ruby.md └── twitter-bootstrap.md ├── css.md ├── git.md ├── git ├── architecture.md ├── instruction.md ├── introduction.md └── workflow_basic.md ├── html-css ├── bem.md ├── convention.md ├── html.md └── oocss.md ├── html.md ├── images ├── areas.png ├── deltas.png └── snapshots.png ├── img └── dependence_pr.png ├── javascript.md ├── laravel.md ├── laravel ├── Crawler │ └── crawler-Goutte.md ├── deployer.md ├── eloquent-basic.md ├── eloquent_relation.md ├── img │ └── small_php_info.png ├── laravel-testing.md ├── laravel-with-sendgrid.md ├── route.md ├── seo-tools-for-laravel.md ├── setup-enviroment.md └── testing │ ├── gioithieu.md │ └── laravel-test-with-database.md └── php.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | wiki.haposoft.com -------------------------------------------------------------------------------- /Composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/Composer.md -------------------------------------------------------------------------------- /PHP/AccessingObjectInArrayStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/AccessingObjectInArrayStyle.md -------------------------------------------------------------------------------- /PHP/ArrayObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/ArrayObject.md -------------------------------------------------------------------------------- /PHP/ArrayToObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/ArrayToObject.md -------------------------------------------------------------------------------- /PHP/AutoloadingClasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/AutoloadingClasses.md -------------------------------------------------------------------------------- /PHP/Chapter-3-Introduces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/Chapter-3-Introduces.md -------------------------------------------------------------------------------- /PHP/Class-Information-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/Class-Information-Functions.md -------------------------------------------------------------------------------- /PHP/ExceptionHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/ExceptionHandling.md -------------------------------------------------------------------------------- /PHP/Iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/Iterator.md -------------------------------------------------------------------------------- /PHP/MethodChaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/MethodChaining.md -------------------------------------------------------------------------------- /PHP/ObjectCloning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/ObjectCloning.md -------------------------------------------------------------------------------- /PHP/Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/Serialization.md -------------------------------------------------------------------------------- /PHP/chapter1-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/PHP/chapter1-2.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/_config.yml -------------------------------------------------------------------------------- /blade-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/blade-template.md -------------------------------------------------------------------------------- /coding-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard.md -------------------------------------------------------------------------------- /coding-standard/RESTful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/RESTful.md -------------------------------------------------------------------------------- /coding-standard/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/database.md -------------------------------------------------------------------------------- /coding-standard/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/git.md -------------------------------------------------------------------------------- /coding-standard/html-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/html-css.md -------------------------------------------------------------------------------- /coding-standard/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/javascript.md -------------------------------------------------------------------------------- /coding-standard/laravel-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/laravel-best-practices.md -------------------------------------------------------------------------------- /coding-standard/laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/laravel.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/classes-properties-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/classes-properties-methods.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/comment.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/composer.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/dependency-injection.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/env.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/exception.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/function.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/if-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/if-else.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/index.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/name-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/name-rule.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/psr-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/psr-1.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/standard-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/standard-function.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/ternary-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/ternary-operator.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/unit-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/unit-test.md -------------------------------------------------------------------------------- /coding-standard/php-best-practices/variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php-best-practices/variable.md -------------------------------------------------------------------------------- /coding-standard/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/php.md -------------------------------------------------------------------------------- /coding-standard/ruby-on-rails.md: -------------------------------------------------------------------------------- 1 | # Ruby on Rails coding convention 2 | -------------------------------------------------------------------------------- /coding-standard/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/coding-standard/ruby.md -------------------------------------------------------------------------------- /coding-standard/twitter-bootstrap.md: -------------------------------------------------------------------------------- 1 | # Twitter Boostrap coding convention 2 | -------------------------------------------------------------------------------- /css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/css.md -------------------------------------------------------------------------------- /git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/git.md -------------------------------------------------------------------------------- /git/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/git/architecture.md -------------------------------------------------------------------------------- /git/instruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/git/instruction.md -------------------------------------------------------------------------------- /git/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/git/introduction.md -------------------------------------------------------------------------------- /git/workflow_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/git/workflow_basic.md -------------------------------------------------------------------------------- /html-css/bem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/html-css/bem.md -------------------------------------------------------------------------------- /html-css/convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/html-css/convention.md -------------------------------------------------------------------------------- /html-css/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/html-css/html.md -------------------------------------------------------------------------------- /html-css/oocss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/html-css/oocss.md -------------------------------------------------------------------------------- /html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/html.md -------------------------------------------------------------------------------- /images/areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/images/areas.png -------------------------------------------------------------------------------- /images/deltas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/images/deltas.png -------------------------------------------------------------------------------- /images/snapshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/images/snapshots.png -------------------------------------------------------------------------------- /img/dependence_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/img/dependence_pr.png -------------------------------------------------------------------------------- /javascript.md: -------------------------------------------------------------------------------- 1 | //TODO 2 | -------------------------------------------------------------------------------- /laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel.md -------------------------------------------------------------------------------- /laravel/Crawler/crawler-Goutte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/Crawler/crawler-Goutte.md -------------------------------------------------------------------------------- /laravel/deployer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/deployer.md -------------------------------------------------------------------------------- /laravel/eloquent-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/eloquent-basic.md -------------------------------------------------------------------------------- /laravel/eloquent_relation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/eloquent_relation.md -------------------------------------------------------------------------------- /laravel/img/small_php_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/img/small_php_info.png -------------------------------------------------------------------------------- /laravel/laravel-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/laravel-testing.md -------------------------------------------------------------------------------- /laravel/laravel-with-sendgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/laravel-with-sendgrid.md -------------------------------------------------------------------------------- /laravel/route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/route.md -------------------------------------------------------------------------------- /laravel/seo-tools-for-laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/seo-tools-for-laravel.md -------------------------------------------------------------------------------- /laravel/setup-enviroment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/setup-enviroment.md -------------------------------------------------------------------------------- /laravel/testing/gioithieu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/testing/gioithieu.md -------------------------------------------------------------------------------- /laravel/testing/laravel-test-with-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/laravel/testing/laravel-test-with-database.md -------------------------------------------------------------------------------- /php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haposoft/wiki/HEAD/php.md --------------------------------------------------------------------------------