This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.51 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
{
"name": "arkecosystem/stan",
"type": "library",
"description": "Static Analysis & Testing for Laravel. Powered by PHPStan and Pest.",
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "[email protected]"
}
],
"require": {
"pestphp/pest": "^1.11",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-livewire": "^1.0",
"spatie/pest-plugin-snapshots": "^1.1",
"ergebnis/phpstan-rules": "^0.15.3",
"friendsofphp/php-cs-fixer": "^v3.1.0",
"graham-campbell/analyzer": "^3.0",
"johnkary/phpunit-speedtrap": "^4.0",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.5",
"nunomaduro/larastan": "^0.7.11",
"nunomaduro/laravel-mojito": "^0.2.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-strict-rules": "^0.12.10",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.11.38",
"jasonmccreary/laravel-test-assertions": "^1.1",
"orchestra/testbench": "^6.19",
"fakerphp/faker": "^1.15"
},
"extra": {
"laravel": {
"providers": [
"ARKEcosystem\\Stan\\StanServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"ARKEcosystem\\Stan\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}