-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 819 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 819 Bytes
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
{
"name": "betterphp/php-reflection-utils",
"version": "1.0.0",
"type": "library",
"license": "GPL-3.0",
"description": "PHP Reflection Utils is a set of helper methods for accessing the private properties and methods of a class",
"keywords": ["reflection", "test", "unit test", "private", "call"],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/betterphp/php-code-style.git"
}
],
"require": {
"php": ">= 5.6.0"
},
"require-dev": {
"betterphp/php-code-style": "dev-master",
"squizlabs/php_codesniffer": "~2",
"phpunit/phpunit": "~6",
"phpdocumentor/phpdocumentor": "~2"
},
"autoload": {
"psr-4": {
"betterphp\\utils\\": "./src/utils"
}
}
}