https://github.com/gigacache/mission-impossible
A Symfony cli tool to quickly and efficiently track missions from a json file. Built for a custom event-driven middleware system.
https://github.com/gigacache/mission-impossible
event-driven-architecture middleware php symfony tool
Last synced: about 2 months ago
JSON representation
A Symfony cli tool to quickly and efficiently track missions from a json file. Built for a custom event-driven middleware system.
- Host: GitHub
- URL: https://github.com/gigacache/mission-impossible
- Owner: gigacache
- Created: 2023-12-01T22:55:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T09:12:09.000Z (over 2 years ago)
- Last Synced: 2025-05-20T12:22:43.641Z (about 1 year ago)
- Topics: event-driven-architecture, middleware, php, symfony, tool
- Language: PHP
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Mission Impossible
A Symfony cli tool to quickly and efficiently track `missions` from a `json file`. Built for a custom `event-driven` middleware system.
## Installation
Add to Bash profile
```
cd ~
git clone https://github.com/gigacache/mission-impossible.git .mission-impossible
cd ~/.mission-impossible
composer update
export PATH=~/.mission-impossible:$PATH
source ~/.bash_profile
```
Install composer
```
make install
```
Run unit tests
```
make run-tests
```
## Commands
Get missions in project by environment
```
./mi get::missions
```
Get missions triggered by this mission
```
./mi get::missions:next
```
Get missions that triggered this mission
```
./mi get::missions:prev
```
Get missions by status
```
./mi get::missions:enabled
```