-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 930 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
{
"name": "mazer/rewrite-dagger",
"description": "A php dagger that chisel out the \"seam\" for testing by rewrite code instead of using any extensions like runkit.",
"type": "library",
"keywords": [
"php-test",
"test",
"tests",
"testing",
"mock",
"mocks",
"mocking"
],
"scripts": {
"test": "phpunit",
"testWithCoverage": "phpunit --coverage-text --whitelist src/ --colors",
"codingStyleCheck": "php-cs-fixer fix ./ --dry-run --diff"
},
"require": {
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9",
"friendsofphp/php-cs-fixer": "*"
},
"autoload": {
"psr-4": {
"RewriteDagger\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "MazeR",
"email": "mazer0701@gmail.com"
}
]
}