-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1007 Bytes
/
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
{
"name": "flextype-components/strings",
"description": "Strings Component is a set of methods to help with the manipulation of strings.",
"license": "MIT",
"keywords": [
"Strings", "strings", "dot", "php-strings", "php", "flextype-components"
],
"support": {
"source": "https://github.com/flextype-components/strings",
"issues": "https://github.com/flextype-components/strings/issues"
},
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://github.com/Awilum"
}
],
"require": {
"php": ">=7.3.0"
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform": {
"php": "7.3.0"
}
},
"autoload":{
"psr-4": {
"Flextype\\Component\\Strings\\": "src/"
}
},
"require-dev": {
"doctrine/coding-standard": "8.1.0"
}
}