generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.57 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
60
{
"name": "spawnia/php-package-template",
"description": "GitHub repository template for a PHP package",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"homepage": "https://github.com/spawnia/php-package-template",
"support": {
"issues": "https://github.com/spawnia/php-package-template/issues",
"source": "https://github.com/spawnia/php-package-template"
},
"require": {
"php": "^7.4 || ^8",
"thecodingmachine/safe": "^1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"infection/infection": "~0.26",
"jangregor/phpstan-prophecy": "^1",
"mll-lab/php-cs-fixer-config": "^4.4",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"Spawnia\\PhpPackageTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\PhpPackageTemplate\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4.24"
},
"preferred-install": "dist",
"sort-packages": true
}
}