https://github.com/dconco/pip-galaxy
https://github.com/dconco/pip-galaxy
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dconco/pip-galaxy
- Owner: dconco
- License: mit
- Created: 2025-09-26T13:51:24.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-05T22:34:05.000Z (8 months ago)
- Last Synced: 2025-10-06T00:22:44.502Z (8 months ago)
- Language: PHP
- Homepage: https://pipgalaxy.pxxl.click
- Size: 268 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# PhpSPA Template
A simple, minimal template for building single-page applications with PHP using the [phpSPA framework](https://github.com/dconco/phpspa).
## Quick Start
```bash
composer create-project phpspa/phpspa MyApp
cd MyApp
composer start
```
## What's Included
- **2 Simple Pages**: Home and About
- **Clean Layout**: Minimal HTML structure
- **Tailwind CSS**: For styling
- **Responsive**: Works on all devices
## Project Structure
```
src/
├── index.php # App entry point
├── config/env.php # Environment config
├── layout/Layout.php # HTML layout
└── pages/
├── HomePage.php # Home page
└── AboutPage.php # About page
```
## Customize
1. Edit content in `pages/` files
2. Modify styles by updating Tailwind classes
3. Add new pages by creating new files and registering routes in `index.php`
That's it! Simple and ready to go.
---
Built with [phpSPA Framework](https://github.com/dconco/phpspa)