generated from ergebnis/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "lctrs/php-library-skeleton",
"description": "Provides a GitHub repository template for a PHP library, using GitHub Actions.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jérôme Parmentier",
"email": "[email protected]"
}
],
"homepage": "https://github.com/Lctrs/php-library-skeleton",
"support": {
"issues": "https://github.com/Lctrs/php-library-skeleton/issues",
"source": "https://github.com/Lctrs/php-library-skeleton"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"doctrine/coding-standard": "12.0.0",
"ergebnis/composer-normalize": "2.44.0",
"ergebnis/license": "2.6.0",
"infection/infection": "0.27.11",
"maglnet/composer-require-checker": "4.7.1",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.8",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpunit/phpunit": "10.5.27",
"psalm/plugin-phpunit": "0.19.0",
"vimeo/psalm": "5.26.1"
},
"autoload": {
"psr-4": {
"Lctrs\\Library\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lctrs\\Library\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.0"
},
"preferred-install": "dist",
"sort-packages": true
}
}