-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 KB
/
composer.json
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
{
"name": "nayleen/development-dependencies",
"description": "Composer metapackage for development libraries I regularly use.",
"license": "MIT",
"type": "metapackage",
"require": {
"php": ">=8.1",
"amphp/phpunit-util": "^3",
"ergebnis/composer-normalize": "^2",
"friendsofphp/php-cs-fixer": "^3.52.1",
"mikey179/vfsstream": "^1",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1.10.29",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9",
"thecodingmachine/phpstan-safe-rule": "^1",
"thecodingmachine/safe": "^2"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.5.x-dev"
}
},
"scripts": {
"post-update-cmd": "@composer normalize"
}
}