https://github.com/qualityunit/resqu-server
https://github.com/qualityunit/resqu-server
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/qualityunit/resqu-server
- Owner: QualityUnit
- License: mit
- Created: 2017-11-15T12:58:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-06T04:46:05.000Z (about 2 years ago)
- Last Synced: 2025-12-26T06:48:14.048Z (6 months ago)
- Language: PHP
- Size: 5.26 MB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# resqu-server
Php queue implementation
## Dependencies
* [PHP 5.6+](http://php.net/manual/en/install.php) (runtime)
* [ext-pcntl](http://php.net/manual/en/book.pcntl.php)
* [ext-posix](http://php.net/manual/en/book.posix.php)
* [ext-proctitle](http://php.net/manual/en/book.proctitle.php) (optional)
* [Composer - global](https://getcomposer.org/doc/00-intro.md) (dev / build)
* [Java 7+](https://java.com/en/download/help/download_options.xml) (dev / build)
## Development environment setup
After installing dependencies and cloning the project, navigate into **root directory** and run:
**LINUX**
```
./gradlew setupDev
```
**WINDOWS**
```
gradlew setupDev
```
## Distribution
To generate distribution archive, navigate into **root directory** and run:
**LINUX**
```
./gradlew dist
```
**WINDOWS**
```
gradlew dist
```
## Build system
All basic tasks are handled by Gradle build system. Build tasks can be executed from **project root** like this:
**LINUX**
```
./gradlew ...
```
**WINDOWS**
```
gradlew ...
```
List of all available tasks:
**LINUX**
```
./gradlew tasks
```
**WINDOWS**
```
gradlew tasks
```