-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "colopl/package-skeleton",
"description": "PHP Package skeleton project",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Colopl\\PackageSkeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Colopl\\PackageSkeleton\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "~8.1.0 || ~8.1.0 || ~8.2.0"
},
"require-dev": {
"php-cs-fixer/shim": "^3.18",
"phpcompatibility/php-compatibility": "dev-develop",
"phpcsstandards/phpcsutils": "dev-develop",
"phpstan/phpstan": "^1.10.20",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^10.2.2",
"psalm/plugin-phpunit": "^0.18.4",
"rector/rector": "^0.15.25",
"vimeo/psalm": "^5.12"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}