simonhamp / network
A new kind of social network.
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 0
Type:project
Requires
- php: ^7.1.3
- fideloper/proxy: ^4.0
- laravel/framework: 5.8.*
- laravel/tinker: ^1.0
- simonhamp/network-elements: ^0.0.12
Requires (Dev)
- beyondcode/laravel-dump-server: ^1.0
- filp/whoops: ^2.0
- fzaninotto/faker: ^1.4
- mockery/mockery: ^1.0
- nunomaduro/collision: ^3.0
- phpunit/phpunit: ^7.5
README
Network is a new kind of social network that lets you take back control of your content and your privacy. Read more on the Wiki.
This is heavily WIP and there's really not much to see yet, but if you want to have a play feel free.
Requirements
- PHP 7.1+
- ZeroMQ
- ZeroMQ PHP extension
If you don't have ZeroMQ or the PHP extension installed (if you're not sure, you probably don't), you can install them via your package manager and PECL, for example using Homebrew on a Mac:
$ brew install zmq $ pecl install zmq-beta
To install ZeroMQ on other platforms, please check the ZeroMQ docs.
Installation
The simplest way to install Network right now is via the command line:
$ composer create-project simonhamp/network /path/to/install/to
ALTERNATIVELY: If you prefer to fork and clone this repo, you will need to install dependencies manually by running the following from the project's root:
$ composer install
After all of the dependencies have downloaded, you can kick off the setup process by running:
$ php artisan network:configure
It's a guided CLI installation so it should be pretty easy to follow.
Updating
Updating is as simple as running:
$ composer update && php artisan migrate
This will pull in the latest version of the main package and its dependencies and then run any new/outstanding migrations. This should all be pretty painless.
Problems
Any feedback you can give about your experience on any platform would be great. Please feel free to open an issue.
Acknowledgements
Network is proudly built on Laravel.