Atom Framework
Go to Github
v1.0.0
v1.0.0
  • Installation
  • Getting Started
  • Configuration
    • Environment
    • Authentication
  • Basics
    • Routing
    • Middleware
    • Controllers
    • Models
    • Requests
    • Views
    • URL Generation
    • Session
  • Misc
    • Security
      • Encryption
      • Hashing
    • Storage
    • Moment
Propulsé par GitBook

© 2025 Licon Corp

Sur cette page
  • Installing using Composer
  • Local Development Server

Cet article vous a-t-il été utile ?

Installation

How to install Atom Framework

SuivantGetting Started

Dernière mise à jour il y a 6 ans

Cet article vous a-t-il été utile ?

Atom utilizes to manage its dependencies. So, before using Atom, make sure you have Composer installed on your machine.

Installing using Composer

composer create-project frameworkatom/atom project-name

Replace "project-name" with your project name.

Local Development Server

If you have PHP installed locally and you would like to use PHP's built-in development server to serve your application, you may use:

php atom serve

#or

php atom s

This command will start a development server at http://127.0.0.1:2019

Composer