This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "anner/slim-ddd",
"type": "project",
"authors": [
{
"name": "Anner Visser",
"email": "[email protected]"
}
],
"require": {
"php": "8.1.*",
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-igbinary": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-uuid": "*",
"doctrine/event-manager": "^1.1",
"doctrine/orm": "^2.10",
"monolog/monolog": "^3.0",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^6.3",
"psr/http-message": "^1.0",
"ramsey/uuid": "^4.2",
"ramsey/uuid-doctrine": "^1.8",
"slim/slim": "^4.9",
"symfony/cache": "^6.0",
"webmozart/assert": "^1.10"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.32.0",
"doctrine/coding-standard": "^10.0",
"infection/infection": "^0.26.0",
"maglnet/composer-require-checker": "^4.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.0",
"qossmic/deptrac-shim": "^1.0.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^5.1"
},
"autoload": {
"psr-4": {
"Content\\": "src/Content/",
"Shared\\": "src/Shared/"
}
},
"autoload-dev": {
"psr-4": {
"ContentTest\\": "test/unit/Content",
"SharedTest\\": "test/unit/Shared",
"UnitTestHelpers\\": "test/unit/helpers"
}
},
"scripts": {
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"check": [
"@psalm",
"@phpstan",
"@cs",
"@test",
"@infection",
"@composer-require-checker",
"@deptrac"
],
"test-coverage": "XDEBUG_MODE=coverage phpunit --colors=always --coverage-clover clover.xml",
"cs": "@phpcs",
"cs-fix": "@phpcbf",
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"infection": "infection",
"psalm": "psalm",
"phpstan": "phpstan",
"composer-require-checker": "composer-require-checker",
"deptrac": "deptrac"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}