generated from ffflabs/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.44 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
{
"name": "ergebnis/php-library-template",
"type": "library",
"description": "Provides a GitHub repository template for a PHP library, using GitHub actions.",
"homepage": "https://github.com/ergebnis/php-library-template",
"license": "MIT",
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8.2",
"ergebnis/license": "^1.1.0",
"ergebnis/php-cs-fixer-config": "^2.2.2",
"ergebnis/phpstan-rules": "~0.15.2",
"ergebnis/test-util": "^1.1.0",
"infection/infection": "~0.15.3",
"jangregor/phpstan-prophecy": "~0.8.0",
"phpstan/extension-installer": "^1.0.5",
"phpstan/phpstan": "~0.12.45",
"phpstan/phpstan-deprecation-rules": "~0.12.5",
"phpstan/phpstan-phpunit": "~0.12.16",
"phpstan/phpstan-strict-rules": "~0.12.5",
"phpunit/phpunit": "^8.5.8",
"psalm/plugin-phpunit": "~0.12.1",
"vimeo/psalm": "^3.16"
},
"config": {
"platform": {
"php": "7.2.25"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ergebnis\\Library\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Library\\Test\\": "test/"
}
},
"support": {
"issues": "https://github.com/ergebnis/php-library-template/issues",
"source": "https://github.com/ergebnis/php-library-template"
}
}