PHPackages                             scholtz/async-web-frontend - 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. [DevOps &amp; Deployment](/categories/devops)
4. /
5. scholtz/async-web-frontend

ActiveLibrary[DevOps &amp; Deployment](/categories/devops)

scholtz/async-web-frontend
==========================

PHP WebSocket frontend for AsyncWeb

1.0.1(11y ago)0132GNU GPL 2JavaScript

Since Feb 22Pushed 8y ago1 watchersCompare

[ Source](https://github.com/scholtz/AsyncWebFrontend)[ Packagist](https://packagist.org/packages/scholtz/async-web-frontend)[ Docs](https://github.com/scholtz/async-web-frontend/)[ RSS](/packages/scholtz-async-web-frontend/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (3)Versions (3)Used By (0)

AsyncWebFrontend
================

[](#asyncwebfrontend)

FrontEnd installation for AsyncWeb

Installation:

1. Install composer

```
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
```

2. Install project to prod01 directory

```
mkdir /srv/www/vhosts/MyProject
cd /srv/www/vhosts/MyProject
git clone https://github.com/scholtz/AsyncWebFrontend.git prod01
cd /srv/www/vhosts/MyProject/prod01
cp composer.json.default composer.json
composer update
```

3. Set permissions

```
chown -R www-data:users .
# or
chown -R user:www-data .

find . -type d -exec chmod 770 {} \; && find . -type f -exec chmod 660 {} \;
```

4. Set up webserver then add path your virtual host for the domain in Apache, Nginx, or other webserver to /srv/www/vhosts/MyApp/htdocs

For example:

```
server {

	root /srv/www/vhosts/MyProject/prod01/htdocs;
	index index.html index.php;

	server_name www.myproject.com ru.myproject.com;

	location ~ \.php$ {
		location ~ \..*/.*\.php$ {return 404;}
		include fastcgi_params;
		fastcgi_pass  127.0.0.1:9000;
		fastcgi_param APPLICATION_ENV prod01;
	}

	location / {
		try_files $uri $uri/ /index.php;
	}

	# if SSL is not enabled, disable lines below:

	ssl_certificate /etc/letsencrypt/live/www.myproject.com/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/www.myproject.com/privkey.pem;
    ssl_trusted_certificate /etc/letsencrypt/live/www.myproject.com/fullchain.pem;

	include snippets/ssl-params.conf;
}

```

Do not forget to reload apache or nginx, for example:

```
nginx -t 				# test nginx config
service nginx reload 	# reload nginx config

```

5. Set up project Set up your settings.php file. Use settings.example.php as example usage file.

You can alternativly use the web setup.

6. To upgrade project do the following:

```
git fetch origin master
git reset --hard FETCH_HEAD
git clean -df
```

7. Bower It is recomended to use bower for distribution of javascript libraries

```
cd htdocs
bower install jquery
bower install bootstrap
bower install font-awesome
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~24 days

Total

2

Last Release

4125d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/98f480d546e51be105611e71d0d9c723877b9f8e41003f7bf274318116274525?d=identicon)[Scholtz](/maintainers/Scholtz)

---

Top Contributors

[![scholtz](https://avatars.githubusercontent.com/u/1223439?v=4)](https://github.com/scholtz "scholtz (27 commits)")

---

Tags

socketsserverWebSocketsRatchetfrontendAsyncWebAsynchonous web

### Embed Badge

![Health badge](/badges/scholtz-async-web-frontend/health.svg)

```
[![Health](https://phpackages.com/badges/scholtz-async-web-frontend/health.svg)](https://phpackages.com/packages/scholtz-async-web-frontend)
```

###  Alternatives

[cboden/ratchet

PHP WebSocket library

6.4k22.3M252](/packages/cboden-ratchet)[voryx/thruway

Thruway WAMP router core

6751.0M17](/packages/voryx-thruway)[plesk/ratchetphp

PHP WebSocket library

1891.5k2](/packages/plesk-ratchetphp)

PHPackages © 2026

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