├── .gitignore ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── _includes └── welcome.md ├── _layouts ├── default.html └── page.html ├── _posts ├── 01-01-01-Getting-Started.md ├── 01-02-01-Use-the-Current-Stable-Version.md ├── 01-03-01-Built-in-Web-Server.md ├── 01-04-01-Mac-Setup.md ├── 01-05-01-Windows-Setup.md ├── 01-06-01-Vagrant.md ├── 02-01-01-Code-Style-Guide.md ├── 03-01-01-Language-Highlights.md ├── 03-02-01-Programming-Paradigms.md ├── 03-03-01-Namespaces.md ├── 03-04-01-Standard-PHP-Library.md ├── 03-05-01-Command-Line-Interface.md ├── 03-06-01-XDebug.md ├── 04-01-01-Dependency-Management.md ├── 04-02-01-Composer-and-Packagist.md ├── 04-03-01-PEAR.md ├── 05-01-01-Coding-Practices.md ├── 05-02-01-The-Basics.md ├── 05-03-01-Date-and-Time.md ├── 05-04-01-Design-Patterns.md ├── 05-05-01-PHP-and-UTF8.md ├── 06-01-01-Dependency-Injection.md ├── 06-02-01-Basic-Concept.md ├── 06-03-01-Complex-Problem.md ├── 06-04-01-Containers.md ├── 06-05-01-Further-Reading.md ├── 07-01-01-Databases.md ├── 08-01-01-Errors-and-Exceptions.md ├── 08-02-01-Errors.md ├── 08-03-01-Exceptions.md ├── 09-01-01-Security.md ├── 09-02-01-Web-Application-Security.md ├── 09-03-01-Password-Hashing.md ├── 09-04-01-Data-Filtering.md ├── 09-05-01-Configuration-Files.md ├── 09-06-01-Register-Globals.md ├── 09-07-01-Error-Reporting.md ├── 10-01-01-Testing.md ├── 10-02-01-Test-Driven-Development.md ├── 10-03-01-Behavior-Driven-Development.md ├── 10-04-01-Complementary-Testing-Tools.md ├── 11-01-01-Servers-and-Deployment.md ├── 11-02-01-Platform-as-a-Service.md ├── 11-03-01-Virtual-or-Dedicated-Servers.md ├── 11-04-01-Shared-Servers.md ├── 11-05-01-Building-your-Application.md ├── 12-01-01-Caching.md ├── 12-02-01-Bytecode-Cache.md ├── 12-03-01-Object-Caching.md ├── 13-01-01-Resources.md ├── 13-02-01-Frameworks.md ├── 13-03-01-Components.md ├── 13-04-01-Books.md └── 14-01-01-Community.md ├── banners.md ├── images ├── banners │ ├── btn1-120x90.png │ ├── btn2-120x60.png │ ├── leaderboard-728x90.png │ ├── lg-rect-386x280.png │ ├── med-rect-300x250.png │ ├── rect-180x150.png │ ├── sq-btn-125x125.png │ └── vert-rect-240x400.png ├── favicon.png ├── nmc-logo.gif └── og-logo.png ├── index.html ├── pages ├── Design-Patterns.md ├── Functional-Programming.md ├── The-Basics.md └── example.md ├── scripts └── setup.js ├── sitemap.xml └── styles ├── all.css ├── all.less ├── base ├── all.less ├── bars-buttons.less ├── buttons.less ├── grid.less ├── idioms.less ├── prefixer.less ├── reset.less ├── spacing.less ├── typography.less └── variables.less ├── print.css ├── site ├── site-content.less ├── site-footer.less ├── site-header.less ├── site-navigation.less └── variables.less └── syntax.css /.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | *.DS_Store 3 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | id.phptherightway.com 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_includes/welcome.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_posts/01-01-01-Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-01-01-Getting-Started.md -------------------------------------------------------------------------------- /_posts/01-02-01-Use-the-Current-Stable-Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-02-01-Use-the-Current-Stable-Version.md -------------------------------------------------------------------------------- /_posts/01-03-01-Built-in-Web-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-03-01-Built-in-Web-Server.md -------------------------------------------------------------------------------- /_posts/01-04-01-Mac-Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-04-01-Mac-Setup.md -------------------------------------------------------------------------------- /_posts/01-05-01-Windows-Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-05-01-Windows-Setup.md -------------------------------------------------------------------------------- /_posts/01-06-01-Vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/01-06-01-Vagrant.md -------------------------------------------------------------------------------- /_posts/02-01-01-Code-Style-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/02-01-01-Code-Style-Guide.md -------------------------------------------------------------------------------- /_posts/03-01-01-Language-Highlights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-01-01-Language-Highlights.md -------------------------------------------------------------------------------- /_posts/03-02-01-Programming-Paradigms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-02-01-Programming-Paradigms.md -------------------------------------------------------------------------------- /_posts/03-03-01-Namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-03-01-Namespaces.md -------------------------------------------------------------------------------- /_posts/03-04-01-Standard-PHP-Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-04-01-Standard-PHP-Library.md -------------------------------------------------------------------------------- /_posts/03-05-01-Command-Line-Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-05-01-Command-Line-Interface.md -------------------------------------------------------------------------------- /_posts/03-06-01-XDebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/03-06-01-XDebug.md -------------------------------------------------------------------------------- /_posts/04-01-01-Dependency-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/04-01-01-Dependency-Management.md -------------------------------------------------------------------------------- /_posts/04-02-01-Composer-and-Packagist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/04-02-01-Composer-and-Packagist.md -------------------------------------------------------------------------------- /_posts/04-03-01-PEAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/04-03-01-PEAR.md -------------------------------------------------------------------------------- /_posts/05-01-01-Coding-Practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/05-01-01-Coding-Practices.md -------------------------------------------------------------------------------- /_posts/05-02-01-The-Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/05-02-01-The-Basics.md -------------------------------------------------------------------------------- /_posts/05-03-01-Date-and-Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/05-03-01-Date-and-Time.md -------------------------------------------------------------------------------- /_posts/05-04-01-Design-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/05-04-01-Design-Patterns.md -------------------------------------------------------------------------------- /_posts/05-05-01-PHP-and-UTF8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/05-05-01-PHP-and-UTF8.md -------------------------------------------------------------------------------- /_posts/06-01-01-Dependency-Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/06-01-01-Dependency-Injection.md -------------------------------------------------------------------------------- /_posts/06-02-01-Basic-Concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/06-02-01-Basic-Concept.md -------------------------------------------------------------------------------- /_posts/06-03-01-Complex-Problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/06-03-01-Complex-Problem.md -------------------------------------------------------------------------------- /_posts/06-04-01-Containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/06-04-01-Containers.md -------------------------------------------------------------------------------- /_posts/06-05-01-Further-Reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/06-05-01-Further-Reading.md -------------------------------------------------------------------------------- /_posts/07-01-01-Databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/07-01-01-Databases.md -------------------------------------------------------------------------------- /_posts/08-01-01-Errors-and-Exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/08-01-01-Errors-and-Exceptions.md -------------------------------------------------------------------------------- /_posts/08-02-01-Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/08-02-01-Errors.md -------------------------------------------------------------------------------- /_posts/08-03-01-Exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/08-03-01-Exceptions.md -------------------------------------------------------------------------------- /_posts/09-01-01-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-01-01-Security.md -------------------------------------------------------------------------------- /_posts/09-02-01-Web-Application-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-02-01-Web-Application-Security.md -------------------------------------------------------------------------------- /_posts/09-03-01-Password-Hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-03-01-Password-Hashing.md -------------------------------------------------------------------------------- /_posts/09-04-01-Data-Filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-04-01-Data-Filtering.md -------------------------------------------------------------------------------- /_posts/09-05-01-Configuration-Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-05-01-Configuration-Files.md -------------------------------------------------------------------------------- /_posts/09-06-01-Register-Globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-06-01-Register-Globals.md -------------------------------------------------------------------------------- /_posts/09-07-01-Error-Reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/09-07-01-Error-Reporting.md -------------------------------------------------------------------------------- /_posts/10-01-01-Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/10-01-01-Testing.md -------------------------------------------------------------------------------- /_posts/10-02-01-Test-Driven-Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/10-02-01-Test-Driven-Development.md -------------------------------------------------------------------------------- /_posts/10-03-01-Behavior-Driven-Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/10-03-01-Behavior-Driven-Development.md -------------------------------------------------------------------------------- /_posts/10-04-01-Complementary-Testing-Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/10-04-01-Complementary-Testing-Tools.md -------------------------------------------------------------------------------- /_posts/11-01-01-Servers-and-Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/11-01-01-Servers-and-Deployment.md -------------------------------------------------------------------------------- /_posts/11-02-01-Platform-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/11-02-01-Platform-as-a-Service.md -------------------------------------------------------------------------------- /_posts/11-03-01-Virtual-or-Dedicated-Servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/11-03-01-Virtual-or-Dedicated-Servers.md -------------------------------------------------------------------------------- /_posts/11-04-01-Shared-Servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/11-04-01-Shared-Servers.md -------------------------------------------------------------------------------- /_posts/11-05-01-Building-your-Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/11-05-01-Building-your-Application.md -------------------------------------------------------------------------------- /_posts/12-01-01-Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/12-01-01-Caching.md -------------------------------------------------------------------------------- /_posts/12-02-01-Bytecode-Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/12-02-01-Bytecode-Cache.md -------------------------------------------------------------------------------- /_posts/12-03-01-Object-Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/12-03-01-Object-Caching.md -------------------------------------------------------------------------------- /_posts/13-01-01-Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/13-01-01-Resources.md -------------------------------------------------------------------------------- /_posts/13-02-01-Frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/13-02-01-Frameworks.md -------------------------------------------------------------------------------- /_posts/13-03-01-Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/13-03-01-Components.md -------------------------------------------------------------------------------- /_posts/13-04-01-Books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/13-04-01-Books.md -------------------------------------------------------------------------------- /_posts/14-01-01-Community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/_posts/14-01-01-Community.md -------------------------------------------------------------------------------- /banners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/banners.md -------------------------------------------------------------------------------- /images/banners/btn1-120x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/btn1-120x90.png -------------------------------------------------------------------------------- /images/banners/btn2-120x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/btn2-120x60.png -------------------------------------------------------------------------------- /images/banners/leaderboard-728x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/leaderboard-728x90.png -------------------------------------------------------------------------------- /images/banners/lg-rect-386x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/lg-rect-386x280.png -------------------------------------------------------------------------------- /images/banners/med-rect-300x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/med-rect-300x250.png -------------------------------------------------------------------------------- /images/banners/rect-180x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/rect-180x150.png -------------------------------------------------------------------------------- /images/banners/sq-btn-125x125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/sq-btn-125x125.png -------------------------------------------------------------------------------- /images/banners/vert-rect-240x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/banners/vert-rect-240x400.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/nmc-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/nmc-logo.gif -------------------------------------------------------------------------------- /images/og-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/images/og-logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/index.html -------------------------------------------------------------------------------- /pages/Design-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/pages/Design-Patterns.md -------------------------------------------------------------------------------- /pages/Functional-Programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/pages/Functional-Programming.md -------------------------------------------------------------------------------- /pages/The-Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/pages/The-Basics.md -------------------------------------------------------------------------------- /pages/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/pages/example.md -------------------------------------------------------------------------------- /scripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/scripts/setup.js -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/sitemap.xml -------------------------------------------------------------------------------- /styles/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/all.css -------------------------------------------------------------------------------- /styles/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/all.less -------------------------------------------------------------------------------- /styles/base/all.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/all.less -------------------------------------------------------------------------------- /styles/base/bars-buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/bars-buttons.less -------------------------------------------------------------------------------- /styles/base/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/buttons.less -------------------------------------------------------------------------------- /styles/base/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/grid.less -------------------------------------------------------------------------------- /styles/base/idioms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/idioms.less -------------------------------------------------------------------------------- /styles/base/prefixer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/prefixer.less -------------------------------------------------------------------------------- /styles/base/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/reset.less -------------------------------------------------------------------------------- /styles/base/spacing.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/spacing.less -------------------------------------------------------------------------------- /styles/base/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/typography.less -------------------------------------------------------------------------------- /styles/base/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/base/variables.less -------------------------------------------------------------------------------- /styles/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/print.css -------------------------------------------------------------------------------- /styles/site/site-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/site/site-content.less -------------------------------------------------------------------------------- /styles/site/site-footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/site/site-footer.less -------------------------------------------------------------------------------- /styles/site/site-header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/site/site-header.less -------------------------------------------------------------------------------- /styles/site/site-navigation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/site/site-navigation.less -------------------------------------------------------------------------------- /styles/site/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/site/variables.less -------------------------------------------------------------------------------- /styles/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylibrian/php-the-right-way/HEAD/styles/syntax.css --------------------------------------------------------------------------------