forked from bit3archive/string-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.09 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.09 KB
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": "bit3/string-builder",
"description": "Java like StringBuilder implementation for PHP",
"keywords": ["string"],
"license": "MIT",
"authors": [
{
"name": "Tristan Lins",
"email": "tristan@lins.io",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"email": "info@bit3.de",
"issues": "https://github.com/bit3/string-builder/issues",
"source": "https://github.com/bit3/string-builder"
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"contao-community-alliance/coding-standard": "~1.0",
"contao-community-alliance/build-system": "~1.0",
"contao-community-alliance/build-system-all-tasks": "~1.0",
"evert/phpdoc-md" : "~0.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bit3\\StringBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bit3\\StringBuilder\\Tests\\": "src/"
}
},
"replace": {
"bit3/php-string-builder": "self.version"
},
"extra": {
"branch-alias": {
"dev-develop": "2.0.x-dev"
}
}
}