-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (66 loc) · 1.88 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
{
"name": "jxckaroo/laravel-state-machine",
"description": "A simple state machine to handle model transactions, based on a list of pre-defined rules, for Laravel.",
"keywords": [
"jxckaroo",
"state-machine",
"laravel-state-machine",
"laravel"
],
"homepage": "https://github.com/jxckaroo/laravel-state-machine",
"license": "MIT",
"type": "library",
"authors": [{
"name": "Jack Mollart",
"email": "[email protected]",
"role": "Developer"
}],
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.9",
"vimeo/psalm": "^4.4",
"friendsofphp/php-cs-fixer": "^3.5",
"pestphp/pest": "^1.21"
},
"autoload": {
"psr-4": {
"Jxckaroo\\StateMachine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jxckaroo\\StateMachine\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"sniff": [
"./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots"
],
"lint": [
"./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Jxckaroo\\StateMachine\\StateMachineServiceProvider"
],
"aliases": {
"StateMachine": "Jxckaroo\\StateMachine\\StateMachineFacade"
}
}
}
}