-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.08 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.08 KB
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
62
63
64
65
66
{
"name": "gustavofreze/account",
"type": "project",
"license": "MIT",
"description": "Service responsible for managing account transactions.",
"prefer-stable": true,
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Account\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"Account\\": "tests/Unit/"
}
},
"require": {
"php": "^8.5",
"ext-pdo": "*",
"slim/psr7": "^1.8",
"slim/slim": "^4.15",
"ramsey/uuid": "^4.9",
"doctrine/dbal": "^3.9",
"monolog/monolog": "^3.9",
"tiny-blocks/math": "^3.6",
"tiny-blocks/http": "^4.2",
"respect/validation": "^2.4",
"php-di/slim-bridge": "^3.4",
"tiny-blocks/collection": "^1.14",
"tiny-blocks/environment-variable": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.1",
"dg/bypass-finals": "^1.8",
"infection/infection": "^0.32",
"squizlabs/php_codesniffer": "^4.0",
"tiny-blocks/docker-container": "1.2.*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"test": "RUN_MIGRATIONS=1 php -d memory_limit=2G ./vendor/bin/phpunit --configuration phpunit.xml tests",
"phpcs": "php ./vendor/bin/phpcs --standard=PSR12 --extensions=php ./src",
"phpstan": "php ./vendor/bin/phpstan analyse -c phpstan.neon.dist --quiet --no-progress",
"mutation-test": "php ./vendor/bin/infection --threads=max --logger-html=report/coverage/mutation-report.html --coverage=report/coverage",
"test-no-coverage": "RUN_MIGRATIONS=1 php ./vendor/bin/phpunit --configuration phpunit.xml --no-coverage tests",
"review": [
"@phpcs",
"@phpstan"
],
"tests": [
"@test",
"@mutation-test"
],
"tests-no-coverage": [
"@test-no-coverage"
]
}
}