-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "tiny-blocks/docker-container",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/tiny-blocks/docker-container",
"description": "Manage Docker containers programmatically, simplifying the creation, running, and interaction with containers.",
"prefer-stable": true,
"minimum-stability": "stable",
"keywords": [
"psr",
"tests",
"docker",
"tiny-blocks",
"test-containers",
"docker-container"
],
"authors": [
{
"name": "Gustavo Freze de Araujo Santos",
"homepage": "https://github.com/gustavofreze"
}
],
"support": {
"issues": "https://github.com/tiny-blocks/docker-container/issues",
"source": "https://github.com/tiny-blocks/docker-container"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"TinyBlocks\\DockerContainer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"TinyBlocks\\DockerContainer\\": "tests/Unit/"
}
},
"require": {
"php": "^8.3",
"symfony/process": "^7.1",
"tiny-blocks/ksuid": "^1",
"tiny-blocks/mapper": "^1",
"tiny-blocks/collection": "^1"
},
"require-dev": {
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^11",
"phpstan/phpstan": "^1",
"dg/bypass-finals": "^1.8",
"squizlabs/php_codesniffer": "^3.11",
"ext-pdo": "*"
},
"scripts": {
"test": "phpunit -d memory_limit=2G --configuration phpunit.xml tests",
"phpcs": "phpcs --standard=PSR12 --extensions=php ./src",
"phpmd": "phpmd ./src text phpmd.xml --suffixes php --ignore-violations-on-exit",
"phpstan": "phpstan analyse -c phpstan.neon.dist --quiet --no-progress",
"unit-test": "phpunit --no-coverage --configuration phpunit.xml --testsuite unit",
"test-no-coverage": "phpunit --configuration phpunit.xml --no-coverage tests",
"review": [
"@phpcs",
"@phpmd",
"@phpstan"
],
"tests": [
"@test"
],
"tests-no-coverage": [
"@test-no-coverage"
]
}
}