-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
65 lines (65 loc) · 1.57 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
{
"name": "leepe/movary",
"type": "project",
"authors": [
{
"name": "Lee Peuker",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3.8.2",
"guzzlehttp/guzzle": "^7.9.2",
"league/csv": "^9.15",
"maennchen/zipstream-php": "^3.1",
"monolog/monolog": "^3.7",
"nikic/fast-route": "^1.3",
"php-di/php-di": "^7.0.7",
"phpmailer/phpmailer": "^6.9.1",
"psr/http-client": "^1.0.3",
"ramsey/uuid": "^4.7.6",
"robmorgan/phinx": "^0.16.1",
"spomky-labs/otphp": "^11.3",
"symfony/console": "^7.1",
"twig/twig": "^3.14",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.9",
"phpstan/phpstan": "^1.12.3",
"phpstan/phpstan-phpunit": "^1.4",
"vimeo/psalm": "^5.26",
"psalm/plugin-phpunit": "^0.19"
},
"scripts": {
"test": [
"@test-cs",
"@test-phpstan",
"@test-psalm",
"@test-unit"
],
"test-cs": "phpcs --standard=./settings/phpcs.xml",
"test-phpstan": "phpstan analyse -c ./settings/phpstan.neon",
"test-psalm": "psalm -c ./settings/psalm.xml --show-info=false",
"test-unit": "phpunit -c ./settings/phpunit.xml --testsuite unit"
},
"autoload": {
"psr-4": {
"Movary\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\Movary\\": "tests/unit/"
}
},
"config": {
"sort-packages": true
}
}