generated from thesis-php/template
-
-
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.04 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.04 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": "thesis/message-bus-persistence-postgres",
"description": "Postgres Persistence for Thesis MessageBus",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "Thesis Team",
"homepage": "https://github.com/orgs/thesis-php/people"
}
],
"require": {
"php": "^8.4",
"amphp/postgres": "^2.1",
"amphp/sql": "^2.0",
"thesis/message-bus": "^0.4@dev"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"phpunit/phpunit": "^12.3.15",
"symfony/var-dumper": "^6.4.15 || ^7.3.4",
"typhoon/formatter": "^0.1@dev"
},
"autoload": {
"psr-4": {
"Thesis\\MessageBus\\Persistence\\Postgres\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thesis\\MessageBus\\Persistence\\Postgres\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"bump-after-update": "dev",
"platform": {
"php": "8.4.4"
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "tools"
}
},
"scripts": {
"analyse-deps": "tools/composer-dependency-analyser/vendor/bin/composer-dependency-analyser",
"fixcs": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --verbose",
"infection": "tools/infection/vendor/bin/infection --show-mutations",
"normalize": "@composer bin composer-normalize normalize --diff ../../composer.json",
"phpstan": "tools/phpstan/vendor/bin/phpstan analyze",
"pre-command-run": "mkdir -p var",
"psalm": "tools/psalm/vendor/bin/psalm --show-info --no-diff --no-cache",
"rector": "tools/rector/vendor/bin/rector process",
"test": "phpunit"
}
}