forked from laravel-arcanist/arcanist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 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
68
69
70
71
72
{
"name": "laravel-arcanist/arcanist",
"description": "A package to take the pain out of building multi-step form wizards in Laravel.",
"license": "MIT",
"type": "library",
"version": "1.0.0",
"authors": [
{
"name": "Kai Sassnowski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"facade/ignition-contracts": "^1.0",
"laravel/framework": "^10.0 || ^11.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"ergebnis/php-cs-fixer-config": "^6.25",
"mockery/mockery": "^1.5.1",
"nunomaduro/collision": "^8.0",
"nunomaduro/larastan": "^2.4",
"orchestra/testbench": "^9.0",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"spatie/phpunit-snapshot-assertions": "^5.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Arcanist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanist\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"providers": [
"Arcanist\\ArcanistServiceProvider"
]
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
],
"analyze": [
"vendor/bin/phpstan analyze -c phpstan.neon"
],
"cs": [
"mkdir -p .build/php-cs-fixer",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose"
],
"test": [
"vendor/bin/phpunit"
]
}
}