-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 997 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 997 Bytes
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
{
"name": "northrook/dev",
"description": "Collection of custom --dev related packages.",
"type": "library",
"license": "MIT",
"keywords": [
"dev",
"php-cs-fixer",
"phpstan"
],
"authors": [
{
"name": "Martin",
"email": "mn@northrook.com"
}
],
"autoload": {
"psr-4": {
"_Dev\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"psr/log": "@stable",
"psr/container": "@stable",
"psr/cache": "@stable",
"phpstan/phpstan": " @stable",
"northrook/php-cs": "dev-main",
"northrook/logger": "dev-main",
"northrook/cache": "dev-main",
"jetbrains/phpstorm-attributes": "^1.2",
"symfony/var-dumper": "@stable",
"tracy/tracy": "@stable",
"northrook/pathfinder": "dev-main",
"northrook/settings": "dev-main",
"northrook/profiler": "dev-main",
"symfony/http-foundation": "^7.3"
},
"require-dev": {
"symfony/cache": "^7.2"
}
}