-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.16 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "tenantcloud/data-transfer-objects",
"description": "PHP data transfer objects",
"license": "MIT",
"require": {
"php": ">=8.3",
"ext-json": "*",
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
"spatie/macroable": "^1.0|^2.0",
"tenantcloud/php-standard": "1.2 || ^1.4 || ^2.0"
},
"require-dev": {
"pestphp/pest": "^3.8",
"orchestra/testbench": "^7.0|^8.5|^9.0|^10.0",
"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\\DataTransferObjects\\": "src/"
}
},
"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
}
}
}