Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tswicegood/argil
PHP potter's clay. A small web framework.
https://github.com/tswicegood/argil
Last synced: 12 days ago
JSON representation
PHP potter's clay. A small web framework.
- Host: GitHub
- URL: https://github.com/tswicegood/argil
- Owner: tswicegood
- Created: 2009-05-22T05:50:17.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-10-29T18:46:09.000Z (about 15 years ago)
- Last Synced: 2024-04-14T14:50:10.610Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 129 KB
- Stars: 12
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Argil: Potter's clay for the web
================================Argil is a small micro framework that makes deploying applications using
PHP 5.3 extremely simple and straight forward.Requirements
------------
* PHP 5.3Documentation
-------------
''TODO''Tasks
-----
Want to help? Here's a list of tasks that not completed, feel free to pick
one and contribute. Please send a Pull Request for anything that's been
completed.### Create narrative documentation
Self explanatory. Feel free to contribute.### Create API documentation
Self explanatory. Feel free to document away.### Create CachedRouter to speed up route matching
Routing currently checks all provided routes in order to figure out which
route callback can respond. This can be remedied by adding a CachedRouter
to "cache" the lookup by hashing the "verb uri" against known matches. Not
sure how useful this would be, but feel free to implement it.