-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 972 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 972 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
{
"name": "bacon/bacon-string-utils",
"description": "BaconStringUtils contain utitilies to work with strings.",
"homepage": "https://github.com/Bacon/BaconStringUtils",
"license" : "BSD-2-Clause",
"authors": [
{
"name": "Ben Scholzen 'DASPRiD'",
"email": "mail@dasprids.de",
"homepage": "http://www.dasprids.de",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"zendframework/zendframework": "~2.0",
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "~1.5",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"zendframework/zend-filter": "To use the Slugifier as a Zend\\Filter instance."
},
"autoload": {
"psr-0": {
"BaconStringUtils": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}