-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
39 lines (39 loc) · 985 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
{
"name": "nyholm/nsa",
"description": "See everything and do whatever you want. No privacy rule will stop us. Used in tests, debugging and fixtures to access properties and methods.",
"keywords": [
"reflection",
"test",
"debug",
"fixture"
],
"homepage": "https://tnyholm.se",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"webmozart/assert": "^1.1.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5.1"
},
"autoload": {
"psr-4": {
"Nyholm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nyholm\\NSA\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}