src
├── Application
│ ├── Command
│ │ ├── CommandHandlerInterface.php
│ │ ├── CreateFlightTripItem
│ │ │ ├── CreateFlightTripItemCommand.php
│ │ │ └── CreateFlightTripItemHandler.php
│ │ ├── CreateRoomTripItem
│ │ │ ├── CreateRoomTripItemCommand.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo -e "\033[33m\n✔\033[33m Installing German package...\033[0m\n" | |
brew install gearman #--with-mysql or --with-postgresql for queue storage | |
echo -e "\033[33m\n✔\033[33m Installing German PHP extension...\033[0m\n" | |
brew install php54-gearman #change to your php version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
*/ | |
class ForkManager | |
{ | |
/** | |
* @var array Collection of pids running | |
*/ |