-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.01 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "dflydev/finite-state-machine-support-for-laravel",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"dflydev/finite-state-machine": "^0@dev"
},
"require-dev": {
"dflydev/php-coding-standards": "dev-main",
"ergebnis/composer-normalize": "^2.31",
"ergebnis/license": "^2.1",
"nunomaduro/larastan": "^2.5",
"orchestra/testbench": "^8.0",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Dflydev\\FiniteStateMachine\\SupportForLaravel\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"scripts": {
"style:check": "@php ./vendor/bin/php-cs-fixer fix --dry-run",
"style:fix": "@php ./vendor/bin/php-cs-fixer fix"
}
}