-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.26 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
{
"name": "duncan3dc/uopz-expectations",
"type": "library",
"description": "Mock core functions and set up expectations similar to Mockery",
"keywords": ["mock", "mockery", "phpunit", "uopz", "core", "testing", "mocking"],
"homepage": "https://github.com/duncan3dc/uopz-expectations",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"require": {
"mockery/mockery": "^1.0",
"ext-uopz": "*",
"php": "^7.2 || ^8.0"
},
"require-dev": {
"maglnet/composer-require-checker": "^2.0 || ^3.0",
"phpstan/phpstan": "^0.12.94",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {"duncan3dc\\Mock\\": "src/"}
},
"autoload-dev": {
"files": ["tests/functions.php"],
"psr-4": {"duncan3dc\\MockTests\\": "tests/"}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/composer-require-checker",
"vendor/bin/phpstan analyse --level=max src tests",
"vendor/bin/phpcs --standard=phpcs.xml src tests"
]
}
}