https://github.com/autarky/framework
PHP framework for self-sufficient developers.
https://github.com/autarky/framework
php php-framework
Last synced: 6 months ago
JSON representation
PHP framework for self-sufficient developers.
- Host: GitHub
- URL: https://github.com/autarky/framework
- Owner: autarky
- License: mit
- Created: 2014-04-02T18:29:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-11-06T17:43:42.000Z (about 6 years ago)
- Last Synced: 2025-07-08T13:14:04.472Z (6 months ago)
- Topics: php, php-framework
- Language: PHP
- Homepage:
- Size: 749 KB
- Stars: 62
- Watchers: 6
- Forks: 6
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Autarky
[](https://travis-ci.org/autarky/framework)
[](https://github.com/autarky/framework/releases)
[](https://github.com/autarky/framework/branches/active)
[](http://opensource.org/licenses/MIT)
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](http://autarky.lutro.me).
Changelog and upgrade instructions are available in Github's [releases](https://github.com/autarky/framework/releases).
Related repositories: [Container](https://github.com/autarky/container), [Twig templating](https://github.com/autarky/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](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](http://stackoverflow.com) using the ["autarky" tag](http://stackoverflow.com/questions/ask?tags=autarky,php).
Contact [Andreas Lutro](https://github.com/anlutro) personally for potential security issues.
## License
The contents of this repository is released under the [MIT license](http://opensource.org/licenses/MIT). See the [LICENSE](LICENSE) file included for more information.