2022-09-13 13:14:49 +00:00
|
|
|
# Misuzu
|
|
|
|
> Misuzu can and will steal your lunch money.
|
|
|
|
|
|
|
|
## Requirements
|
2023-07-19 19:10:20 +00:00
|
|
|
- PHP 8.2
|
2022-09-13 13:14:49 +00:00
|
|
|
- MariaDB 10.6
|
|
|
|
- [Composer](https://getcomposer.org/)
|
2023-07-21 18:58:37 +00:00
|
|
|
|
|
|
|
## Working on Index
|
|
|
|
Because Index is now served through Packagist, in order to work on it in tandem with Misuzu you'll have to use a `composer.local.json` file:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "/path/to/local/repo"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"flashwave/index": "dev-master"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|