-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.2 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
{
"name": "icanboogie/accessor",
"type": "library",
"description": "Implements getters/setters, read-only/write-only properties, volatile defaults, type control…",
"keywords": [
"getter",
"setter",
"facade"
],
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/Accessor/issues",
"source": "https://github.com/ICanBoogie/Accessor"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"prefer-dist": true,
"require": {
"php": ">=7.2.5",
"icanboogie/common": "^1.3.2|^2.0 <6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9.17",
"phpunit/phpunit": "^8.5.32"
},
"autoload": {
"psr-4": {
"ICanBoogie\\Accessor\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"ICanBoogie\\Accessor\\": "tests"
}
}
}