-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.14 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
{
"name": "serafim/properties",
"description": "PHP properties implementation",
"type": "library",
"license": "MIT",
"homepage": "http://github.io/SerafimArts/Properties",
"keywords": [
"fields",
"properties",
"type-hint",
"psr-5"
],
"support": {
"issues": "https://github.com/SerafimArts/Properties/issues",
"source": "https://github.com/SerafimArts/Properties"
},
"authors": [
{
"name": "Nesmeyanov Kirill",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"railt/parser": "1.2.*",
"railt/lexer": "1.2.*",
"psr/simple-cache": "~1.0"
},
"autoload": {
"psr-4": {
"Serafim\\Properties\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"railt/compiler": "1.2.*",
"symfony/var-dumper": "4.1.*",
"symfony/console": "4.1.*",
"symfony/cache": "4.1.*",
"predis/predis": "^1.1"
},
"autoload-dev": {
"psr-4": {
"Serafim\\Properties\\Tests\\": "tests/"
}
}
}