-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 981 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 981 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
35
36
37
38
{
"name": "standardlibrary/type",
"description": "Building block base classes for PHP objects",
"type": "library",
"keywords": ["php", "building-block", "immutable"],
"homepage": "https://github.com/standardlibrary",
"license": "GPL-3.0",
"authors": [
{
"name": "Simon Deeley",
"email": "simondeeley@users.noreply.github.com",
"homepage": "https://github.com/simondeeley",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/standardlibrary/casts-to-string/issues",
"source": "https://github.com/standardlibrary/casts-to-string",
"docs": "https://github.com/standardlibrary/casts-to-string/blob/master/README.md"
},
"require": {
"php": "~7.1"
},
"autoload": {
"psr-4": {
"StandardLibrary\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"replace": {
"simondeeley/type": "*"
}
}