-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.03 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
{
"name": "christeredvartsen/testfs",
"type": "library",
"description": "Virtual filesystem that can be used for testing",
"keywords": [ "streamwrapper", "phpunit", "testing", "filesystem" ],
"homepage": "https://github.com/christeredvartsen/testfs/",
"license": "MIT",
"authors": [{
"name": "Christer Edvartsen",
"email": "cogo@starzinger.net"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18.4",
"symfony/var-dumper": "^6.2",
"vimeo/psalm": "^5.5"
},
"support": {
"issues": "https://github.com/christeredvartsen/testfs/issues"
},
"autoload": {
"psr-4": {
"TestFs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestFs\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"sa": "vendor/bin/psalm",
"ci": [
"@test",
"@sa"
]
},
"config": {
"sort-packages": true
}
}