generated from tenantcloud/php-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.42 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
{
"name": "tenantcloud/laravel-mixins",
"description": "A collection of laravel mixins",
"license": "MIT",
"require": {
"php": ">=8.2",
"illuminate/database": "^9.0|^10.0",
"illuminate/auth": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"webmozart/assert": "^1.9",
"anourvalar/eloquent-serialize": "^1.2",
"laravel/serializable-closure": "^1.1",
"illuminate/contracts": "^10.0"
},
"require-dev": {
"pestphp/pest": "^2.8",
"php-cs-fixer/shim": "~3.19.2",
"tenantcloud/php-cs-fixer-rule-sets": "~3.0.0",
"phpstan/phpstan": "~1.10.21",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpstan/phpstan-mockery": "^1.1",
"orchestra/testbench": "^8.5",
"nunomaduro/larastan": "^2.6"
},
"autoload": {
"psr-4": {
"TenantCloud\\Mixins\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"cs-fix": "vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"testbench": "vendor/bin/testbench",
"coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage-html coverage",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"laravel": {
"providers": [
"TenantCloud\\Mixins\\MixinsServiceProvider"
]
}
}
}