autarky/framework

Autarky - PHP framework for self-sufficient developers

0.10.1 2016-05-20 18:29 UTC

README

Build Status Latest Stable Version Latest Unstable Version License

Autarky is a PHP framework for experienced developers and/or quick learners, with a focus on developer freedom of choice, configuration over convention, and the right mix of rapid/pleasant development and sturdy application architecture.

Documentation is available at autarky.lutro.me.

Changelog and upgrade instructions are available in Github's releases.

Related repositories: Container, Twig templating

Installation

Try the framework out by creating a skeleton project using composer.

If you don't have composer installed already:

curl -sS https://getcomposer.org/installer | php
chmod +x composer.phar && mv composer.phar /usr/local/bin/composer

Create the skeleton project using composer:

composer create-project -s dev autarky/skeleton --prefer-dist ./myproject
cd myproject && php -S localhost:8000 -t ./public

Visit the url "localhost:8000" in your browser to make sure it's working.

Contributing

git clone https://github.com/autarky/framework /path/to/autarky
cd /path/to/autarky
composer install
phpunit

The master branch is the current minor version. Previous minor versions have their own branches. Only critical bugfixes should be applied to these branches.

The develop branch is the next minor version. New features are applied to this branch.

Read the CONTRIBUTING.md file for more information.

Contact

Feel free to open an issue on GitHub if you have any problems or suggestions. Alternatively (or additionally), you may want to ask on Stack Overflow using the "autarky" tag.

Contact Andreas Lutro personally for potential security issues.

License

The contents of this repository is released under the MIT license. See the LICENSE file included for more information.