-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name": "cloudcreativity/utils-value",
"description": "Library to handle standard scalar values in PHP.",
"keywords": [
"value",
"scalar"
],
"homepage": "https://github.com/cloudcreativity/utils-value",
"support": {
"issues": "https://github.com/cloudcreativity/utils-value/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Cloud Creativity Ltd",
"email": "info@cloudcreativity.co.uk"
}
],
"require": {
"php": "^7.1.3|^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"CloudCreativity\\Utils\\Value\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudCreativity\\Utils\\Value\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
}
}
}