-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
50 lines (50 loc) · 1.41 KB
/
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
47
48
49
50
{
"name": "kdyby/strict-objects",
"type": "library",
"description": "Simple trait to make your class strict, when calling or accessing undefined member (property or method).",
"keywords": ["kdyby", "strict", "object", "scream", "magic", "accessors", "properties", "methods", "members", "exceptions"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Kdyby/StrictObjects/issues"
},
"require": {
"php": "^7.2"
},
"require-dev": {
"doctrine/coding-standard": "^4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.10.3",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "3.3.1"
},
"autoload": {
"psr-4": {
"Kdyby\\StrictObjects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\StrictObjects\\": "tests/StrictObjects/"
},
"classmap": [
"tests/StrictObjects/data"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}