-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 912 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": "fdevs/locale",
"license": "MIT",
"type": "library",
"description": "library for working with different languages",
"homepage": "https://github.com/4devs/Locale",
"keywords": [
"languages",
"locale"
],
"authors": [
{
"name": "Samusev Andrey",
"email": "[email protected]",
"homepage": "http://andrey.4devs.io/"
},
{
"name": "4devs Community",
"homepage": "https://github.com/4devs/Locale/contributors"
}
],
"require": {
"php": "~5.5|~7.0",
"doctrine/collections": "~1.3"
},
"suggest": {
"fdevs/locale-bridge": "use locale library with symfony components"
},
"autoload": {
"psr-4": {
"FDevs\\Locale\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}