Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 723 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 723 Bytes

Atom Framework

Installation

The simplest way to install and get started is using the skeleton project:

$ composer create-project atomwares/atom-project <project dir>

Or install Atom standalone using Composer:

$ composer require atomwares/atom

Usage

Create a bootstrap file with the following contents:

<?php

require 'vendor/autoload.php';

($app = new Atom\App())->router
  ->get(['home' => '/'], function () {
        return 'Hello World!';
    });

$app->run();

You may run the script using the built-in PHP server:

$ php -S localhost:8000

License

The Atom Framework is licensed under the MIT license. See License File for more information.