PHPackages                             abtzco/seed-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. abtzco/seed-php

AbandonedArchivedPackage[Framework](/categories/framework)

abtzco/seed-php
===============

The stupidly easy to learn and use PHP micro framework. ;)

1.9.3(4y ago)84972[3 issues](https://github.com/rogeriotaques/seed-php/issues)MITPHPPHP &gt;=5.6.0

Since Dec 7Pushed 4y ago2 watchersCompare

[ Source](https://github.com/rogeriotaques/seed-php)[ Packagist](https://packagist.org/packages/abtzco/seed-php)[ Docs](https://github.com/rogeriotaques/seed-php)[ RSS](/packages/abtzco-seed-php/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (2)Versions (71)Used By (0)

Seed-PHP Microframework
=======================

[](#seed-php-microframework)

[![GitHub tag (latest by date)](https://camo.githubusercontent.com/a74ed009f08b720cb4b43dbd2734b3f61b887c592dc38fa3e671bdab9842cb6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f726f676572696f7461717565732f736565642d7068703f6c6162656c3d56657273696f6e)](https://camo.githubusercontent.com/a74ed009f08b720cb4b43dbd2734b3f61b887c592dc38fa3e671bdab9842cb6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f726f676572696f7461717565732f736565642d7068703f6c6162656c3d56657273696f6e)

> The stupidly easy to learn and use PHP microframework!

A `microframework` is a term used to refer to minimalistic web application frameworks. It lacks most of the functionality which is common to expect in a full-fledged web application framework.

Seed-PHP is a microframework that offers you a really simple way to implement powerfull `RESTfull APIs` or even simple websites that could support pretty much all needed methods and responses in `JSON` or `XML` formats.

Check the complete [documentation](https://github.com/rogeriotaques/seed-php/tree/master/docs).

> **NOTE OF BREAKING CHANGES:**The *namespace* was modified, so if you're updating from previous versions (prior to 1.0.0), you'll be required to update your code, replacing namespace from `Seed\` to `SeedPHP\`. E.g:

```
# Deprecated
use Seed\App;
use Seed\Helper\Http;

# Correct
use SeedPHP\App;
use SeedPHP\Helper\Http;

$app = new App( ... );
```

Get started
-----------

[](#get-started)

Using `composer` it's really simple get started!

If you have a project on going with composer, use:

```
$ php composer require rogeriotaques/seed-php
```

or, to start a project from scratch, use:

```
$ php composer create-project rogeriotaques/seed-php
```

Your application should have a `index.php` which may looks like the following example. Or simply create a new `index.php` file as follows:

Example: (`index.php`)

```
