-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.6 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.6 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
50
{
"name": "artemeon/support",
"description": "Support package for the AGP@ARTEMEON software suite",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"test": "./vendor/bin/pest --parallel",
"test:watch": "composer test -- --watch",
"test:coverage": "XDEBUG_MODE=coverage composer test -- --coverage --min=97.4",
"test:coverage:watch": "composer test:coverage -- --watch",
"test:type-coverage": "composer test -- --type-coverage --min=100",
"test:type-coverage:watch": "composer test:type-coverage -- --watch",
"phpstan": "./vendor/bin/phpstan --memory-limit=2G",
"pint": "./vendor/bin/pint"
},
"autoload": {
"psr-4": {
"Artemeon\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\Support\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.4",
"ext-mbstring": "*",
"illuminate/support": "^11.14.0|^12.16.0",
"jetbrains/phpstorm-attributes": "^1.1",
"nesbot/carbon": "^3.8.4"
},
"require-dev": {
"laravel/pint": "^1.16",
"pestphp/pest": "^3.7.4",
"pestphp/pest-plugin-type-coverage": "^3.2.3",
"pestphp/pest-plugin-watch": "^3.0.0",
"phpstan/phpstan": "^2.1.2",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"process-timeout": 0
}
}