Skip to content

Commit

Permalink
Continuing with the restructuring.
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Jul 9, 2012
1 parent fb3aaff commit d0033b0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Popular Frameworks
# Libraries and Frameworks

## Web Frameworks

Rather than re-invent the wheel, many PHP developers use _frameworks_ to build out web applications. Frameworks abstract away many of the low-level concerns and provide helpful, easy-to-use interfaces to complete common tasks.

_You do not need to use a framework for every project_. Sometimes, plain PHP is the right way to go. But if you do need a framework, here are a few of the most popular ones (in alphabetical order):

## Full-Stack Frameworks
### Full-Stack Frameworks

* [CakePHP](http://cakephp.org/)
* [CodeIgniter](http://codeigniter.com/)
Expand All @@ -16,11 +18,10 @@ _You do not need to use a framework for every project_. Sometimes, plain PHP is
* [Yii](http://www.yiiframework.com/)
* [Zend](http://framework.zend.com/)

## Micro Frameworks
### Micro Frameworks

* [Fat-Free](http://bcosca.github.com/fatfree/)
* [Limonade](http://limonade-php.github.com/)
* [Silex](http://silex.sensiolabs.org/)
* [Slim](http://www.slimframework.com/)

[Back to Top](#top){.top}
4 changes: 1 addition & 3 deletions _includes/links-and-resources.md → _includes/resources.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Links and Resources

Here are some miscellaneous resources that are worth a read.
# Resources

## From the Source

Expand Down
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
<li><a href="#web_application_security">Web Application Security</a></li>
<li><a href="#testing">Testing</a></li>
<li><a href="#command_line_interface">Command Line Interface</a></li>
<li><a href="#popular_frameworks">Popular Frameworks</a></li>
<li><a href="#links_and_resources">Links &amp; Resources</a></li>
<li><a href="#libraries_and_frameworks">Libraries and Frameworks</a></li>
<li><a href="#resources">Resources</a></li>
</ul>
</nav>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.phptherightway.com/" data-size="large" data-hashtags="php">Tweet</a>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
{% capture cli_content %}{% include command-line-interface.md %}{% endcapture %}
{{ cli_content|markdownify }}

{% capture frameworks_content %}{% include popular-frameworks.md %}{% endcapture %}
{% capture frameworks_content %}{% include libraries-and-frameworks.md %}{% endcapture %}
{{ frameworks_content|markdownify }}

{% capture links_content %}{% include links-and-resources.md %}{% endcapture %}
{{ links_content|markdownify }}
{% capture resources_content %}{% include resources.md %}{% endcapture %}
{{ resources_content|markdownify }}

0 comments on commit d0033b0

Please sign in to comment.