Search by

pixelfix / pixelfix

neenerai

A starter web application for the PixelFix Framework.

Package info

github.com/neenerai/pixelfix

Language:Twig

Type:project

pkg:composer/pixelfix/pixelfix

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.4 2026-09-25 23:27 UTC

This package is auto-updated.

Last update: 2026-09-25 23:55:46 UTC


README

A starter web application for the PixelFix Framework.

Requirements

  • PHP 8.2+
  • Composer
  • MySQL, or SQLite with the PHP PDO SQLite extension
  • Apache with mod_rewrite enabled, when using Apache

Create a new project

composer create-project pixelfix/pixelfix my-app
cd my-app

Run the application

Using PHP's development server:

php -S localhost:8000 -t public

Using Apache, configure public/ as the document root.

Console

The application exposes the PixelFix console through pixel and pixelfix:

php pixel
php pixelfix

Examples:

php pixel route:list
php pixel make:model Post
php pixel make:controller PostController
php pixel make:request StorePostRequest
php pixel make:migration create_posts_table
php pixel make:factory PostFactory
php pixel make:seeder PostSeeder
php pixel make:policy PostPolicy
php pixel make:provider PostServiceProvider
php pixel make:middleware EnsureSomething
php pixel migrate
php pixel migrate:status
php pixel db:seed

Run only commands supported by the installed framework version.

Project structure

app/
bootstrap/
config/
database/
docs/
public/
resources/
routes/
storage/
tests/

The application is intentionally domain-neutral. Add your own models, controllers, policies, requests, services, routes, migrations, factories, seeders, and views.