forked from bovigo/vfsStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.48 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
{
"name": "mikey179/vfsstream",
"type": "library",
"homepage": "http://vfs.bovigo.org/",
"description": "Virtual file system to mock the real file system in unit tests.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frank Kleine",
"homepage": "http://frankkleine.de/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/bovigo/vfsStream/issues",
"source": "https://github.com/bovigo/vfsStream/tree/master",
"wiki": "https://github.com/bovigo/vfsStream/wiki"
},
"require": {
"php": "^7.2|^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.0",
"doctrine/coding-standard": "^8.2.1",
"bovigo/callmap": "^6.2.1",
"bovigo/assert": "^6.2",
"phpunit/phpunit": "^9.5.8",
"phpstan/phpstan": "^0.12.94",
"phpstan/phpstan-phpunit": "^0.12.21",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"autoload": {
"psr-4": {
"bovigo\\vfs\\": "src",
"org\\bovigo\\vfs\\": "org/bovigo/vfs"
}
},
"autoload-dev": {
"psr-4": {
"bovigo\\vfs\\tests\\": "tests/phpunit"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"test": "phpunit",
"php-coveralls": "php-coveralls"
}
}