Skip to content

evil-enterprises/phpcore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

phpcore is a framework

Installation

Add package to your composer.json:

{
  "require": {
    "mojosoft/phpcore": "dev-master"
  }
}

Run composer:

$ php composer.phar install -o

Now the entire toolchain is already available upon the vendor autoloader inclusion.

<?php
// Load vendors
include 'vendor/autoload.php';

Route::on('/',function(){
	echo "Hello from Core!";
});

// Dispatch route
Route::dispatch();

// Send response to the browser
Response::send();

Documentation

See the wiki.

Contributing

How to get involved:

  1. Star the project!
  2. Answer questions that come through GitHub issues
  3. Report a bug that you find

Pull Requests

Pull requests are highly appreciated.

Solve a problem. Features are great, but even better is cleaning-up and fixing issues in the code that you discover.

Releases

No releases published

Packages

No packages published

Languages