-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.17 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
{
"name": "good-php/laravel-integration",
"description": "Integrates good-php packages into Laravel applications seamlessly",
"license": "MIT",
"authors": [
{
"name": "Alex Wells (Oleksandr Prypkhan)",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"good-php/serialization": "dev-alpha"
},
"require-dev": {
"pestphp/pest": "^1.0",
"php-cs-fixer/shim": "~3.8.0",
"tenantcloud/php-cs-fixer-rule-sets": "~2.0.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"orchestra/testbench": "^7.6"
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest",
"cs-fix": "./vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"phpstan": "./vendor/bin/phpstan analyse",
"testbench": "./vendor/bin/testbench"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"GoodPhp\\LaravelIntegration\\GoodPhpServiceProvider"
]
}
}
}