-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "dflydev/eventsauce-support",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1 || ^8.2",
"eventsauce/eventsauce": "^3",
"eventsauce/message-outbox": "^0.3 || ^0.4"
},
"require-dev": {
"dflydev/php-coding-standards": "dev-main",
"ergebnis/composer-normalize": "^2.31",
"ergebnis/license": "^2.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9 || ^10"
},
"autoload": {
"psr-4": {
"Dflydev\\EventSauce\\Support\\": "src/"
},
"files": [
"src/functions.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"scripts": {
"lint": "@phpstan",
"phpstan": "@php ./vendor/bin/phpstan analyze",
"style:check": "@php ./vendor/bin/php-cs-fixer fix --dry-run",
"style:fix": "@php ./vendor/bin/php-cs-fixer fix"
}
}