-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1018 Bytes
/
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": "qratorlabs/smocky",
"description": "Mocking library based on runkit",
"homepage": "https://github.com/QratorLabs/Smocky",
"support": {
"issues": "https://github.com/QratorLabs/Smocky/issues"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya Urvachev",
"email": "ui@qrator.net"
}
],
"require": {
"php": "^7.1 || ^8.0",
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"QratorLabs\\Smocky\\": "./src"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.9.0",
"phpstan/phpstan": "^1.10.58"
},
"autoload-dev": {
"psr-4": {
"QratorLabs\\Smocky\\Test\\PhpUnit\\": "./test/phpunit"
},
"files": [
"./test/phpstan/runkit7.stub.php",
"./test/phpunit/Helpers/Functions.php"
]
},
"suggest": {
"ext-runkit7": "^3.0"
},
"scripts": {
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
}
}