Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slact/webylene-php
a bit of a web framework for php
https://github.com/slact/webylene-php
Last synced: 22 days ago
JSON representation
a bit of a web framework for php
- Host: GitHub
- URL: https://github.com/slact/webylene-php
- Owner: slact
- Created: 2009-08-27T07:26:21.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2009-08-27T17:19:22.000Z (about 15 years ago)
- Last Synced: 2024-05-09T23:19:11.236Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 109 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
Webylene
1. Introduction
Webylene is a MVC-ish web framework that tries to have a very small
learning curve to get started, and doesn't tie your arms behind your back.
2. Directory Layout
webylene root/
bootstrap.php - the bootstrap. don't mess with it.
/classes - - classes dir.
/core - - - core classes. don't mess with them.
...
/plugins - - plugin classes. place plugins here.
...
... - - - place classes you'll use here
/config - - - config dir.
/delayed
... - - place configs that shouldn't be autoloaded here
env.php - - environment config. you'll likely need to modify it.
...
/libs - - - libs go here
/core - - - core libs. don't mess with them.
... - - - place libs here. libs shouldn't define any classes.
/scripts - - page-specific scripts
... - - - put your scripts here. the router will map
urls to scripts. see the router config.
/templates - - templates (a.k.a. views) should be here
... - - - templates are the actual output to browser.
/web - - - server root. DON'T put php scripts here.
css/ - - - put css here
js/ - - - put js here
index.php - - don't mind me. don't edit me, either.
.htaccess - - Apache htaccess that directs url handling to the router
3. Getting Started
edit config/env.php
edit config/app.yaml - set database stuff and env stuff
edit config/routes.yaml - make some routes
write scripts to scripts/
look at config.yaml
make templates in templates/
4. How does it work?
wouldn't you like to know?
5. Who made it?
Leo Ponomarev
6. What licence is it distributed under?The New BSD licence:
Copyright (c) 2007-2009, Leo Ponomarev
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.