PHPackages                             easyengine/site-type-php - 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. easyengine/site-type-php

ActiveEe-cli-package[Utility &amp; Helpers](/categories/utility)

easyengine/site-type-php
========================

EasyEngine package for PHP site creation.

v1.10.0(5mo ago)733.6k11[8 PRs](https://github.com/EasyEngine/site-type-php/pulls)1MITPHPCI failing

Since Sep 10Pushed 5mo ago4 watchersCompare

[ Source](https://github.com/EasyEngine/site-type-php)[ Packagist](https://packagist.org/packages/easyengine/site-type-php)[ Docs](https://github.com/easyengine/site-type-php)[ RSS](/packages/easyengine-site-type-php/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (34)Used By (1)

easyengine/site-type-php
========================

[](#easyenginesite-type-php)

EasyEngine package for PHP site creation.

[![Build Status](https://camo.githubusercontent.com/cc6875142fc1039da5ce6b78a1a3a8b9afe66a7ed339a40e96a7b4b050fbcb0e/68747470733a2f2f7472617669732d63692e6f72672f65617379656e67696e652f736974652d747970652d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/easyengine/site-type-php)

Quick links: [Using](#using) | [Contributing](#contributing) | [Support](#support)

Using
-----

[](#using)

This package implements the following commands:

### ee site create --type=php

[](#ee-site-create---typephp)

Runs the standard PHP Site installation.

```
ee site create --type=php  [--cache] [--admin-email=]  [--with-db] [--local-db] [--php=] [--dbname=] [--dbuser=] [--dbpass=] [--dbhost=] [--with-local-redis] [--skip-check] [--skip-status-check] [--ssl=] [--wildcard] [--force]

```

**OPTIONS**

```

	Name of website.

[--cache]
	Use redis cache for PHP.

[--admin-email=]
	E-Mail of the administrator.

 [--with-db]
	Create database for php site.

[--local-db]
	Create separate db container instead of using global db.

[--php=]
	PHP version for site. Currently only supports PHP 5.6 and latest.
	---
	default: latest
	options:
		- 5.6
		- 7.2
		- latest
	---

[--dbname=]
	Set the database name.

[--dbuser=]
	Set the database user.

[--dbpass=]
	Set the database password.

[--dbhost=]
	Set the database host. Pass value only when remote dbhost is required.

[--with-local-redis]
	Enable cache with local redis container.

[--skip-check]
	If set, the database connection is not checked.

[--skip-status-check]
	Skips site status check.

[--ssl=]
	Enables ssl on site.

[--wildcard]
	Gets wildcard SSL .

[--force]
	Resets the remote database if it is not empty.

```

**EXAMPLES**

```
# Create php site (without db)
$ ee site create example.com --type=php

# Create php site with db
$ ee site create example.com --type=php --with-db

# Create php site with ssl from letsencrypt
$ ee site create example.com --type=php --ssl=le

# Create php site with wildcard ssl
$ ee site create example.com --type=php --ssl=le --wildcard

# Create php site with self signed certificate
$ ee site create example.com --type=php --ssl=self

# Create php site with remote database
$ ee site create example.com --type=php --with-db --dbhost=localhost --dbuser=username --dbpass=password

```

### ee site delete

[](#ee-site-delete)

Deletes a website.

```
ee site delete  [--yes]

```

**OPTIONS**

```

	Name of website to be deleted.

[--yes]
	Do not prompt for confirmation.

```

**EXAMPLES**

```
# Delete site
$ ee site delete example.com

```

### ee site update

[](#ee-site-update)

Supports updating and upgrading site.

```
ee site update [] [--ssl=] [--wildcard]

```

```
[]
	Name of the site.

[--ssl=]
	Enable ssl on site

[--wildcard]
	Enable wildcard SSL on site.

```

**EXAMPLES**

```
# Add SSL to non-ssl site
$ ee site update example.com --ssl=le

# Add SSL to non-ssl site
$ ee site update example.com --ssl=le --wildcard

# Add self-signed SSL to non-ssl site
$ ee site update example.com --ssl=self

```

### ee site info --type=php

[](#ee-site-info---typephp)

Runs the standard PHP Site installation.

```
ee site info --type=php  [--cache] [--admin-email=]  [--with-db] [--local-db] [--php=] [--dbname=] [--dbuser=] [--dbpass=] [--dbhost=] [--with-local-redis] [--skip-check] [--skip-status-check] [--ssl=] [--wildcard] [--force]

```

**OPTIONS**

```

	Name of website.

[--cache]
	Use redis cache for PHP.

[--admin-email=]
	E-Mail of the administrator.

 [--with-db]
	Create database for php site.

[--local-db]
	Create separate db container instead of using global db.

[--php=]
	PHP version for site. Currently only supports PHP 5.6 and latest.
	---
	default: latest
	options:
		- 5.6
		- 7.2
		- latest
	---

[--dbname=]
	Set the database name.

[--dbuser=]
	Set the database user.

[--dbpass=]
	Set the database password.

[--dbhost=]
	Set the database host. Pass value only when remote dbhost is required.

[--with-local-redis]
	Enable cache with local redis container.

[--skip-check]
	If set, the database connection is not checked.

[--skip-status-check]
	Skips site status check.

[--ssl=]
	Enables ssl on site.

[--wildcard]
	Gets wildcard SSL .

[--force]
	Resets the remote database if it is not empty.

```

**EXAMPLES**

```
# Create php site (without db)
$ ee site create example.com --type=php

# Create php site with db
$ ee site create example.com --type=php --with-db

# Create php site with ssl from letsencrypt
$ ee site create example.com --type=php --ssl=le

# Create php site with wildcard ssl
$ ee site create example.com --type=php --ssl=le --wildcard

# Create php site with self signed certificate
$ ee site create example.com --type=php --ssl=self

# Create php site with remote database
$ ee site create example.com --type=php --with-db --dbhost=localhost --dbuser=username --dbpass=password

```

### ee site enable

[](#ee-site-enable)

Enables a website. It will start the docker containers of the website if they are stopped.

```
ee site enable [] [--force] [--verify]

```

**OPTIONS**

```
[]
	Name of website to be enabled.

[--force]
	Force execution of site enable.

[--verify]
	Verify if required global services are working.

```

**EXAMPLES**

```
# Enable site
$ ee site enable example.com

# Enable site with verification of dependent global services. (Note: This takes longer time to enable the
site.)
$ ee site enable example.com --verify

# Force enable a site.
$ ee site enable example.com --force

```

### ee site disable

[](#ee-site-disable)

Disables a website. It will stop and remove the docker containers of the website if they are running.

```
ee site disable []

```

**OPTIONS**

```
[]
	Name of website to be disabled.

```

**EXAMPLES**

```
# Disable site
$ ee site disable example.com

```

### ee site info

[](#ee-site-info)

Display all the relevant site information, credentials and useful links.

```
ee site info []

```

```
[]
	Name of the website whose info is required.

```

**EXAMPLES**

```
# Display site info
$ ee site info example.com

```

### ee site ssl

[](#ee-site-ssl)

Verifies ssl challenge and also renews certificates(if expired).

```
ee site ssl  [--force]

```

**OPTIONS**

```

	Name of website.

[--force]
	Force renewal.

```

### ee site list

[](#ee-site-list)

Lists the created websites.

```
ee site list [--enabled] [--disabled] [--format=]

```

abstract list

```
[--enabled]
	List only enabled sites.

[--disabled]
	List only disabled sites.

[--format=]
	Render output in a particular format.
	---
	default: table
	options:
	  - table
	  - csv
	  - yaml
	  - json
	  - count
	  - text
	---

```

**EXAMPLES**

```
# List all sites
$ ee site list

# List enabled sites
$ ee site list --enabled

# List disabled sites
$ ee site list --disabled

# List all sites in JSON
$ ee site list --format=json

# Count all sites
$ ee site list --format=count

```

### ee site reload --type=php

[](#ee-site-reload---typephp)

Runs the standard PHP Site installation.

```
ee site reload --type=php  [--cache] [--admin-email=]  [--with-db] [--local-db] [--php=] [--dbname=] [--dbuser=] [--dbpass=] [--dbhost=] [--with-local-redis] [--skip-check] [--skip-status-check] [--ssl=] [--wildcard] [--force]

```

**OPTIONS**

```

	Name of website.

[--cache]
	Use redis cache for PHP.

[--admin-email=]
	E-Mail of the administrator.

 [--with-db]
	Create database for php site.

[--local-db]
	Create separate db container instead of using global db.

[--php=]
	PHP version for site. Currently only supports PHP 5.6 and latest.
	---
	default: latest
	options:
		- 5.6
		- 7.2
		- latest
	---

[--dbname=]
	Set the database name.

[--dbuser=]
	Set the database user.

[--dbpass=]
	Set the database password.

[--dbhost=]
	Set the database host. Pass value only when remote dbhost is required.

[--with-local-redis]
	Enable cache with local redis container.

[--skip-check]
	If set, the database connection is not checked.

[--skip-status-check]
	Skips site status check.

[--ssl=]
	Enables ssl on site.

[--wildcard]
	Gets wildcard SSL .

[--force]
	Resets the remote database if it is not empty.

```

**EXAMPLES**

```
# Create php site (without db)
$ ee site create example.com --type=php

# Create php site with db
$ ee site create example.com --type=php --with-db

# Create php site with ssl from letsencrypt
$ ee site create example.com --type=php --ssl=le

# Create php site with wildcard ssl
$ ee site create example.com --type=php --ssl=le --wildcard

# Create php site with self signed certificate
$ ee site create example.com --type=php --ssl=self

# Create php site with remote database
$ ee site create example.com --type=php --with-db --dbhost=localhost --dbuser=username --dbpass=password

```

### ee site restart --type=php

[](#ee-site-restart---typephp)

Runs the standard PHP Site installation.

```
ee site restart --type=php  [--cache] [--admin-email=]  [--with-db] [--local-db] [--php=] [--dbname=] [--dbuser=] [--dbpass=] [--dbhost=] [--with-local-redis] [--skip-check] [--skip-status-check] [--ssl=] [--wildcard] [--force]

```

**OPTIONS**

```

	Name of website.

[--cache]
	Use redis cache for PHP.

[--admin-email=]
	E-Mail of the administrator.

 [--with-db]
	Create database for php site.

[--local-db]
	Create separate db container instead of using global db.

[--php=]
	PHP version for site. Currently only supports PHP 5.6 and latest.
	---
	default: latest
	options:
		- 5.6
		- 7.2
		- latest
	---

[--dbname=]
	Set the database name.

[--dbuser=]
	Set the database user.

[--dbpass=]
	Set the database password.

[--dbhost=]
	Set the database host. Pass value only when remote dbhost is required.

[--with-local-redis]
	Enable cache with local redis container.

[--skip-check]
	If set, the database connection is not checked.

[--skip-status-check]
	Skips site status check.

[--ssl=]
	Enables ssl on site.

[--wildcard]
	Gets wildcard SSL .

[--force]
	Resets the remote database if it is not empty.

```

**EXAMPLES**

```
# Create php site (without db)
$ ee site create example.com --type=php

# Create php site with db
$ ee site create example.com --type=php --with-db

# Create php site with ssl from letsencrypt
$ ee site create example.com --type=php --ssl=le

# Create php site with wildcard ssl
$ ee site create example.com --type=php --ssl=le --wildcard

# Create php site with self signed certificate
$ ee site create example.com --type=php --ssl=self

# Create php site with remote database
$ ee site create example.com --type=php --with-db --dbhost=localhost --dbuser=username --dbpass=password

```

### ee site share

[](#ee-site-share)

Share a site online using ngrok.

```
ee site share  [--disable] [--refresh] [--token=]

```

**OPTIONS**

```

	Name of website.

[--disable]
	Take online link down.

[--refresh]
	Refresh site share if link has expired.

[--token=]
	ngrok token.

```

**EXAMPLES**

```
# Share a site online
$ ee site share example.com

# Refresh shareed link if expired
$ ee site share example.com --refresh

# Disable online link
$ ee site share example.com --disable

```

### ee site clean

[](#ee-site-clean)

Clears Object and Page cache for site.

```
ee site clean [] [--page] [--object]

```

**OPTIONS**

```
[]
	Name of website to be enabled.

[--page]
	Clear page cache.

[--object]
	Clear object cache.

```

**EXAMPLES**

```
# Clear Both cache type for site.
$ ee site clean example.com

# Clear Object cache for site.
$ ee site clean example.com --object

# Clear Page cache for site.
$ ee site clean example.com --page

```

Contributing
------------

[](#contributing)

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.

### Reporting a bug

[](#reporting-a-bug)

Think you’ve found a bug? We’d love for you to help us get it fixed.

Before you create a new issue, you should [search existing issues](https://github.com/easyengine/site-type-php/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.

Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/easyengine/site-type-php/issues/new). Include as much detail as you can, and clear steps to reproduce if possible.

### Creating a pull request

[](#creating-a-pull-request)

Want to contribute a new feature? Please first [open a new issue](https://github.com/easyengine/site-type-php/issues/new) to discuss whether the feature is a good fit for the project.

Support
-------

[](#support)

Github issues aren't for general support questions, but there are other venues you can try:

*This README.md is generated dynamically from the project's codebase using `ee scaffold package-readme` ([doc](https://github.com/EasyEngine/scaffold-command)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*

###  Health Score

54

—

FairBetter than 97% of packages

Maintenance72

Regular maintenance activity

Popularity35

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 55.8% 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 ~88 days

Recently: every ~95 days

Total

31

Last Release

159d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/85d12e799d478a9ff2c22546fc96d056712b76e6895a6519dde4cb71fe80cb78?d=identicon)[easyengine](/maintainers/easyengine)

---

Top Contributors

[![mrrobot47](https://avatars.githubusercontent.com/u/25586785?v=4)](https://github.com/mrrobot47 "mrrobot47 (203 commits)")[![mbtamuli](https://avatars.githubusercontent.com/u/10382077?v=4)](https://github.com/mbtamuli "mbtamuli (45 commits)")[![kirtangajjar](https://avatars.githubusercontent.com/u/8456197?v=4)](https://github.com/kirtangajjar "kirtangajjar (39 commits)")[![sagarnasit](https://avatars.githubusercontent.com/u/25276905?v=4)](https://github.com/sagarnasit "sagarnasit (38 commits)")[![rahulsprajapati](https://avatars.githubusercontent.com/u/10358350?v=4)](https://github.com/rahulsprajapati "rahulsprajapati (17 commits)")[![abhijitrakas](https://avatars.githubusercontent.com/u/26354653?v=4)](https://github.com/abhijitrakas "abhijitrakas (13 commits)")[![dhsathiya](https://avatars.githubusercontent.com/u/26240780?v=4)](https://github.com/dhsathiya "dhsathiya (5 commits)")[![L0RD-ZER0](https://avatars.githubusercontent.com/u/68327382?v=4)](https://github.com/L0RD-ZER0 "L0RD-ZER0 (4 commits)")

---

Tags

easyengineeasyengine-commandhacktoberfestphpssl

### Embed Badge

![Health badge](/badges/easyengine-site-type-php/health.svg)

```
[![Health](https://phpackages.com/badges/easyengine-site-type-php/health.svg)](https://phpackages.com/packages/easyengine-site-type-php)
```

###  Alternatives

[rohitkundale/order-comment

Allows customer to add a special note/message/comment or instruction while placing an order

209.9k](/packages/rohitkundale-order-comment)

PHPackages © 2026

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