-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 755 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 755 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
29
30
31
32
33
34
{
"name": "markatom/accessor",
"type": "library",
"description": "Accessor provides fast access to all properties of any object.",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Tomáš Markacz",
"email": "tomas@markacz.com",
"homepage": "http://markacz.com"
}
],
"support": {
"email": "tomas@markacz.com",
"issues": "https://github.com/Markatom/Accessor/issues"
},
"require": {
"php": ">=5.5",
"nette/php-generator": "2.3.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.8",
"nette/tester": "1.3.2",
"mockery/mockery": "0.9.3"
},
"autoload": {
"classmap": [
"src/exceptions.php"
],
"psr-4": {
"Markatom\\Accessor\\": "src"
}
}
}