nanophp / installer
NanoPHP Framework Installer
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/nanophp/installer
Requires
- php: >=8.1
- guzzlehttp/guzzle: ^7.0
- symfony/console: ^7.4
- symfony/process: ^7.4
This package is auto-updated.
Last update: 2026-02-03 15:19:44 UTC
README
The official installer for the NanoPHP framework.
Installation
Install the NanoPHP installer globally via Composer:
composer global require nanophp/installer
Make sure to place Composer's system-wide vendor bin directory in your $PATH so the nanophp executable can be located by your system.
Usage
Create a new NanoPHP application:
nanophp new my-app
This command will:
- Create a new directory with your application name
- Install NanoPHP framework and all dependencies
- Set up your
.envfile - Generate an application key
Options
Force create even if directory exists:
nanophp new my-app --force
After Installation
Navigate to your new application:
cd my-app
Start the development server:
php artisan serve
Your application will be available at http://localhost:8000
Requirements
- PHP >= 8.1
- Composer
License
The NanoPHP installer is open-sourced software licensed under the MIT license.