-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (57 loc) · 1.93 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "isra00/neo-transposer",
"description": " Automatically transpose the chords of the songs of the Neocatechumenal Way so they fit the singer's voice",
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-mysqli": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-json": "*",
"silex/silex": "~2.0",
"twig/twig": "~2.0",
"symfony/twig-bridge": "~3.1",
"symfony/translation": "~3.1",
"symfony/security": "~3.4",
"doctrine/dbal": "3.2.*",
"geoip2/geoip2": "~2.5",
"silex/web-profiler": "^2.0",
"doctrine/orm": "2.*",
"symfony/cache": "3.*"
},
"autoload": {
"psr-4": {
"NeoTransposer\\": "src/NeoTransposer"
}
},
"autoload-dev": {
"psr-4": {
"NeoTransposer\\Tests\\": "tests/unit/src/NeoTransposer",
"NeoTransposerTests\\Acceptance\\": "tests/acceptance"
}
},
"require-dev": {
"ext-xdebug": "*",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-webdriver": "^1.4",
"codeception/module-db": "^1.2",
"vimeo/psalm": "*",
"fakerphp/faker": "^1.19",
"phpmd/phpmd": "@stable",
"rector/rector": "^0.14.5"
},
"scripts": {
"test": [
"vendor/bin/codecept run unit --coverage-html",
"php tests/testAllTranspositions.php"
],
"test-acceptance": [
"docker start selenium_chrome || docker run -d -p 4444:4444 -p 7900:7900 --shm-size=2g --name selenium_chrome selenium/standalone-chrome",
"vendor/bin/codecept run acceptance"
],
"quality": "vendor/bin/phpmd src/ html cleancode,codesize,design,naming,unusedcode --reportfile tests/reports/phpmd.html"
}
}