-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.94 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 1.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "hpwebdeveloper/laravel-stateflow",
"description": "Laravel Model States with Context",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"package",
"states",
"context"
],
"authors": [
{
"name": "Hamed Panjeh",
"email": "panjeh@gmail.com"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^12.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"larastan/larastan": "^3.8.1",
"laravel/pint": "^1.27",
"orchestra/testbench": "^10.9",
"orchestra/workbench": "^10.0.8",
"pestphp/pest": "^4.3",
"pestphp/pest-plugin-laravel": "^4.0",
"phpstan/phpstan": "^2.1.54",
"phpunit/phpunit": "^12.5.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Hpwebdeveloper\\LaravelStateflow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hpwebdeveloper\\LaravelStateflow\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"aliases": {
"StateFlow": "Hpwebdeveloper\\LaravelStateflow\\Facades\\StateFlow"
},
"providers": [
"Hpwebdeveloper\\LaravelStateflow\\LaravelStateflowServiceProvider"
]
}
},
"scripts": {
"post-install-cmd": [
"@hooks:enable"
],
"post-update-cmd": [
"@hooks:enable"
],
"composer:normalize": "composer normalize",
"composer:normalize:check": "composer normalize --dry-run --no-interaction",
"format": "pint",
"format:check": "pint --test",
"format:dirty": "pint --dirty",
"hooks:enable": [
"[ -d .git ] && git config core.hooksPath .githooks || true",
"[ -f .githooks/pre-commit ] && chmod +x .githooks/pre-commit || true"
],
"stan": "phpstan analyse --no-progress --memory-limit=512M src",
"test": "pest"
}
}