events on RawFile saving and AbcTune saving, extracting tunes and titles from raw abc files

This commit is contained in:
2017-10-09 21:18:02 -04:00
parent 81e40d304e
commit 8ae78ef047
3 changed files with 1802 additions and 752 deletions

View File

@@ -10,7 +10,7 @@
}
],
"require": {
"codeception/codeception": "2.1.6",
"codeception/codeception": "^2.2",
"laravel/laravel": "^5.2",
"aedart/testing-laravel": "1.6.*",
"zackkitzmiller/tiny": "^1.2",

2534
composer.lock generated

File diff suppressed because it is too large Load Diff

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '2'
services:
parser:
image: abc-api/api:latest
volumes:
- .:/var/www
- ./:/opt/project
parser-composer:
image: composer/composer:alpine
volumes:
- .:/app
- ~/.ssh:/root/.ssh
entrypoint:
- composer
command:
- install