Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devvoh/parable
Parable is a PHP micro-framework, intended to just let you do your thing.
https://github.com/devvoh/parable
composer framework micro micro-framework parable php php-framework php5 php7
Last synced: 23 days ago
JSON representation
Parable is a PHP micro-framework, intended to just let you do your thing.
- Host: GitHub
- URL: https://github.com/devvoh/parable
- Owner: devvoh
- License: mit
- Created: 2015-06-11T18:44:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-12T10:22:45.000Z (over 3 years ago)
- Last Synced: 2024-03-15T09:02:52.573Z (8 months ago)
- Topics: composer, framework, micro, micro-framework, parable, php, php-framework, php5, php7
- Language: PHP
- Homepage:
- Size: 997 KB
- Stars: 22
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG-HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## DEPRECATION NOTICE
NOTE: `devvoh/parable:1.2.2` is now no longer being developed. For the next chapter in Parable's future, go to [`parable-php/framework`](https://github.com/parable-php/framework) for the 2.0.0 version.
Parable 2.0.0 is a full rewrite, but it is possible to move over an application built on the 1.0 family to 2.0 in a reasonable time. If you need any assistance, please open an issue [here](https://github.com/parable-php/framework/issues).
Thank you for supporting Parable!
## Parable PHP Framework
[![Build Status](https://travis-ci.org/devvoh/parable.svg?branch=master)](https://travis-ci.org/devvoh/parable)
[![Latest Stable Version](https://poser.pugx.org/devvoh/parable/v/stable)](https://packagist.org/packages/devvoh/parable)
[![Latest Unstable Version](https://poser.pugx.org/devvoh/parable/v/unstable)](https://packagist.org/packages/devvoh/parable)
[![License](https://poser.pugx.org/devvoh/parable/license)](https://packagist.org/packages/devvoh/parable)
[![StyleCI](https://styleci.io/repos/37279417/shield?branch=master)](https://styleci.io/repos/37279417)Parable is a PHP micro-framework intended to be readable, extensible and out-of-your-way.
## Installation
Parable can be installed by using [Composer](http://getcomposer.org/).
```bash
$ composer require devvoh/parable
```This will install Parable and all required dependencies. Parable requires PHP 5.6 or higher.
## Simple Usage
Create an `index.php` file and include the composer autoloader:
```php
get('/hello/{name}', function ($name) use ($app) {
return "Hello, {$name}!";
});$app->run();
```Then go into the `vendor/devvoh/parable` directory and run `make server`. You can then open `http://127.0.0.1:5678/hello/parable` and you should be greeted by "Hello, parable!". You can also serve it through a regular webserver.
## Advanced Usage
To use Parable for more than straightforward apps like in the Basic Usage above, and you want to use Controllers, Actions, Views and more, after installation, run the following command:
```bash
$ vendor/bin/parable init-structure
```Now you're ready! Simply open the url it should be at in in your browser and you should see a welcome page.
If you want to use nginx or another server, that's cool too, but as of yet there's no example configuration available.
## Getting Started
After you've run `parable init-structure`, you should have a basic structure to work from. The example files show most of what you'll need to build something. The example `\Config\App` file includes some of the most important things Parable itself will listen to.
Now, if you want to keep this out of your git (or other vcs) repository, you can place this in a separate config file and exclude it using a `.gitignore` file.
## More information
Read the [documentation](https://devvoh.com/parable/docs/1.0) for more detailed information on how to use Parable, and [CHANGELOG.md](CHANGELOG.md) for recent changes.
## Contributing
Any help in improving Parable is much appreciated, but check [CONTRIBUTING.md](CONTRIBUTING.md) before creating any pull requests.
## Contact
Any questions or constructive feedback? Find me at [devvoh.com](http://devvoh.com) or ask me a question by adding an issue on github. I generally respond fairly quickly, since this is a passion project, after all.
## License
Parable PHP Framework is open-sourced software licensed under the MIT license.