-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 995 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
{
"name": "reecem/mocker",
"description": "Mock class constructor args based on the reflection class",
"require": {
"illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/filesystem": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0|^9.5.10",
"orchestra/testbench": "^3.5|^4.0|^7.0"
},
"keywords": [
"laravel",
"mockery",
"helper",
"testing",
"mocker",
"reecem"
],
"license": "MIT",
"authors": [
{
"name": "ReeceM",
"email": "zsh.rce@gmail.com",
"homepage": "https://githib.com/reecem"
}
],
"homepage": "https://github.com/reecem/mocker",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ReeceM\\Mocker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"style": "phpcs --standard=PSR2 --extensions=php --colors src"
}
}