PHPackages                             fastsitephp/starter-site - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. fastsitephp/starter-site

ActiveProject[Utility &amp; Helpers](/categories/utility)

fastsitephp/starter-site
========================

Starter Site using FastSitePHP

1.5.0(3y ago)8843MITPHPPHP &gt;=5.3.0

Since Nov 16Pushed 1y ago2 watchersCompare

[ Source](https://github.com/fastsitephp/starter-site)[ Packagist](https://packagist.org/packages/fastsitephp/starter-site)[ Docs](https://www.fastsitephp.com/en/)[ RSS](/packages/fastsitephp-starter-site/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (10)Dependencies (5)Versions (16)Used By (0)

🌟 FastSitePHP Starter Site
==========================

[](#-fastsitephp-starter-site)

**Thanks for visiting!** 🌠👍

  [![globe_with_meridians](https://camo.githubusercontent.com/0228ff28ac1772ccedad1175866f6ae63eaa57ecdc52b8848d7d742a5ea01bb1/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663331302e706e67)](https://camo.githubusercontent.com/0228ff28ac1772ccedad1175866f6ae63eaa57ecdc52b8848d7d742a5ea01bb1/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663331302e706e67) [![earth_americas](https://camo.githubusercontent.com/a1360ab1c771ebc5a7daa670194d88b4b466aed000d8ca24ba5b71a9ba9cb493/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330652e706e67)](https://camo.githubusercontent.com/a1360ab1c771ebc5a7daa670194d88b4b466aed000d8ca24ba5b71a9ba9cb493/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330652e706e67) [![earth_asia](https://camo.githubusercontent.com/35f1f7b16150806b7e20f3815b6b4552555b890cb14c78979076bed1d7128c59/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330662e706e67)](https://camo.githubusercontent.com/35f1f7b16150806b7e20f3815b6b4552555b890cb14c78979076bed1d7128c59/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330662e706e67) [![earth_africa](https://camo.githubusercontent.com/bd54af4d404df11dacb35f310f217128a6e90c1a356841c38419dd3c64e66c0a/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330642e706e67)](https://camo.githubusercontent.com/bd54af4d404df11dacb35f310f217128a6e90c1a356841c38419dd3c64e66c0a/68747470733a2f2f6769746875622e6769746875626173736574732e636f6d2f696d616765732f69636f6e732f656d6f6a692f756e69636f64652f31663330642e706e67)   [Español](https://github.com/fastsitephp/starter-site/blob/master/docs/README.es.md)  [Sitio de inicio de FastSitePHP](https://github.com/fastsitephp/starter-site/blob/master/docs/README.es.md)   [Português (do Brasil)](https://github.com/fastsitephp/starter-site/blob/master/docs/README.pt-BR.md)  [FastSitePHP Starter Site](https://github.com/fastsitephp/starter-site/blob/master/docs/README.pt-BR.md)  **This is the main Starter Site for FastSitePHP.** It includes several examples pages and provides a basic directory/file structure. The site is designed to provide structure for basic content (JavaScript, CSS, etc) while remaining small in size so that it is easy to remove files you don’t need and customize it for your site.

🚀 Getting Started
-----------------

[](#-getting-started)

**Getting started with PHP and FastSitePHP is extremely easy.** If you do not have PHP installed then see instructions for Windows, Mac, and Linux on the getting started page:

The starter site does not include the Framework so you will need to run `scripts/install.php` to download it and install it. Once setup you can launch a site from the command-line as show below or if you use a Code Editor or IDE \[Visual Studio Code, GitHub Atom, etc\] then you can launch the site directly from your editor. See the above getting started page for more.

### Download and run this site

[](#download-and-run-this-site)

```
# Download this Repository
cd {starter-site-root}
php ./scripts/install.php
php -S localhost:3000

```

### Create a new project using Composer (PHP Dependency/Package Manager)

[](#create-a-new-project-using-composer-php-dependencypackage-manager)

In addition to downloading this repository you can also start a new project using Composer.

```
composer create-project fastsitephp/starter-site my-app
cd my-app
php -S localhost:3000

```

### Install directly on a server

[](#install-directly-on-a-server)

A bash script is available for a quick setup of a Web Server (Apache or nginx), PHP, and FastSitePHP with a Starter Site. This script works for a full setup on a default OS when nothing is installed.

Supported Operating Systems (more will be added in the future):

- Ubuntu 22.04 LTS
- Ubuntu 20.04 LTS
- Ubuntu 18.04 LTS
- Ubuntu 16.04 LTS

Confirmed Cloud Environments:

- `Amazon AWS Lightsail` with user `ubuntu`
- `DigitalOcean` with user `root`

```
wget https://www.fastsitephp.com/downloads/create-fast-site.sh
sudo bash create-fast-site.sh
```

### Supported Versions of PHP

[](#supported-versions-of-php)

- The FastSitePHP Starter Site works with all versions of PHP from `5.3` to `8.3`.
- If you need to install the Starter Site on a Server with PHP 5.3 you will need to set the `short_open_tag = On` on your server's `php.ini` file.

### Directory Structure

[](#directory-structure)

```
{root}
|
|   # PHP Code
├── app
|   ├── Controllers/*.php
|   ├── Middleware/*.php
|   ├── Models/*.php
|   ├── Views/*.php
│   └── app.php       # Main Application File
│
|   # Application Data Files
├── app_data
│   └── i18n/*.json   # JSON Files for Multiple languages
│
|   # Documentation
├── docs
│
|   # Web Root Folder
├── public
|   ├── css/*
|   ├── img/*
|   ├── js/*
│   └── index.php  # Entry point for web root
│
|   # Application Scripts
├── scripts
│
|   # Vendor files (created when installing dependencies)
└── vendor

```

🖥️ Starter Site Print Screens (Screenshots)
-------------------------------------------

[](#️-starter-site-print-screens-screenshots)

[![Starter Site Home Page](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/home-page.png)](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/home-page.png)

[![Starter Site Example Page](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/data-page.png)](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/data-page.png)

[![Starter Site Login Page](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/login-page.png)](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-01-10/login-page.png)

🔒 🚀 Security and Performance
----------------------------

[](#--security-and-performance)

FastSitePHP’s Starter Site is designed to provide strong security using best practices and high performance with the initial template. When using [Chrome DevTools Lighthouse](https://developers.google.com/web/tools/lighthouse) the Starter Site will score 100 in website categories for both Mobile and Desktop. On tested Cloud Systems using low cost servers a score of 100 is also achieved.

[![Chrome DevTools Lighthouse](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-08-10/Chrome-DevTools-Lighthouse-Desktop.png)](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-08-10/Chrome-DevTools-Lighthouse-Desktop.png)

[![Chrome DevTools Network](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-08-10/Chrome-DevTools-Network.png)](https://raw.githubusercontent.com/fastsitephp/static-files/master/img/starter_site/2020-08-10/Chrome-DevTools-Network.png)

🤝 Contributing
--------------

[](#-contributing)

- If you find a typo or grammar error please fix and submit.
- If you would like to help with translations then please submit the JSON language files in `app_data/i18n`.
- If you would like to submit any other changes then please open an issue first. This is intended to be a minimal site so adding more code needs a good reason.

📝 License
---------

[](#-license)

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 93.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~89 days

Recently: every ~241 days

Total

15

Last Release

1118d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/160072bc0057bea3dc35d4b2cf0a67d01cab755547be147da53d03fbd4da6b80?d=identicon)[conrad.sollitt](/maintainers/conrad.sollitt)

---

Top Contributors

[![ConradSollitt](https://avatars.githubusercontent.com/u/57777521?v=4)](https://github.com/ConradSollitt "ConradSollitt (97 commits)")[![msmafra](https://avatars.githubusercontent.com/u/1005457?v=4)](https://github.com/msmafra "msmafra (7 commits)")

---

Tags

fastsitephpphpstarter-sitestater-kitwebsiteStarter Site

### Embed Badge

![Health badge](/badges/fastsitephp-starter-site/health.svg)

```
[![Health](https://phpackages.com/badges/fastsitephp-starter-site/health.svg)](https://phpackages.com/packages/fastsitephp-starter-site)
```

###  Alternatives

[afragen/git-updater

A plugin to automatically update GitHub, Bitbucket, GitLab, or Gitea hosted plugins, themes, and language packs.

3.3k1.6k](/packages/afragen-git-updater)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
