-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.24 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "tenantcloud/php-standard",
"description": "TenantCloud's PHP standard library: lazy, iterators, enum extensions etc",
"license": "MIT",
"require": {
"php": ">=8.3",
"ext-json": "*",
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"pestphp/pest": "^3.8",
"mockery/mockery": "^1.4",
"php-cs-fixer/shim": "^3.75",
"tenantcloud/php-cs-fixer-rule-sets": "~3.4.1",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpstan/phpstan-mockery": "^2.0"
},
"autoload": {
"psr-4": {
"TenantCloud\\Standard\\": "src/"
},
"files": [
"src/StaticConstructor/functions.php",
"src/StaticConstructor/load.php",
"src/Lazy/functions.php",
"src/Optional/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage-html coverage",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}