Skip to content

skyview059/bearframework

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

# Bear Framework

A framework born in 2016

The goal of Bear Framework is to help you start your next web project in less than a minute and help you make it successful. You've got routing, data storage, addons, logging, assets helpers and many more useful tools.

Build Status Latest Stable Version codecov.io License

Simple and powerful

Bear Framework is one of the easiest PHP frameworks you can find. See for yourself. Here is a simple app that outputs 'Hi'.

<?php
require 'vendor/autoload.php';

$app = new App();

$app->routes->add('/', function() {
    return new App\Response('Hi');
});

$app->run();

Download and install

  • Install via Composer
php composer.phar require bearframework/bearframework
  • Download the zip file

Download the latest release from our GitHub page.

Documentation

Documentation is available at http://bearframework.com/documentation/.

How to run the tests

After installing the dependencies with Composer, you will have a local version of PHPUnit. You can run the tests like this: vendor/bin/phpunit tests/.

License

Bear Framework is open-sourced software. It's free to use under the MIT license. See the license file for more information.

Let's talk

Follow and contact Bear Framework team at bearframework.com, Twitter (@bearframework) and Facebook.

Packages

No packages published

Languages

  • PHP 100.0%