generated from spawnia/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.31 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
{
"name": "spawnia/phpunit-assert-directory",
"description": "PHPUnit extension with assert methods for directories",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "benedikt@franke.tech"
}
],
"homepage": "https://github.com/spawnia/phpunit-assert-directory",
"support": {
"issues": "https://github.com/spawnia/phpunit-assert-directory/issues",
"source": "https://github.com/spawnia/phpunit-assert-directory"
},
"require": {
"php": "^7.3 || ^8",
"phpunit/phpunit": "^8 || ^9 || ^10 || ^11",
"thecodingmachine/safe": "^1.3.3 || ^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.5",
"mll-lab/php-cs-fixer-config": "^4 || ^5",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-strict-rules": "^1",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"autoload": {
"psr-4": {
"Spawnia\\PHPUnitAssertFiles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spawnia\\PHPUnitAssertFiles\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}