-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.31 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.31 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": "idiosyncratic/spiral-snacks",
"description": "A small collection of useful classes for use with Spiral Framework",
"license": "EUPL-1.2",
"type": "library",
"homepage": "https://github.com/idiosyncratic-code/spiral-snacks",
"support": {
"source": "https://github.com/idiosyncratic-code/spiral-snacks"
},
"require": {
"php": ">=8.4",
"spiral/config": "^3.16"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"idiosyncratic/coding-standard": "^3.0",
"pestphp/pest": "^2.36",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"spencermalone/phpstan-no-transitive-use": "^0.0.6",
"yamadashy/phpstan-friendly-formatter": "^1.4"
},
"scripts": {
"phpstan": "phpstan analyse --ansi --memory-limit=2G --error-format=table"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Idiosyncratic\\Spiral\\": "src"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"lock": false,
"sort-packages": true
}
}