This repository was archived by the owner on Jul 1, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.68 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.68 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "andrey-helldar/digittext",
"description": "The module allows to translate numbers into a text equivalent",
"type": "library",
"license": "MIT",
"keywords": ["date", "time", "DateTime", "DigitText", "digits"],
"authors": [
{
"name": "Andrey Helldar",
"email": "helldar@ai-rus.com"
}
],
"support": {
"issues": "https://github.com/andrey-helldar/DigitText/issues",
"source": "https://github.com/andrey-helldar/DigitText"
},
"require": {
"php": ">=7.1",
"ext-intl": "*",
"illuminate/http": "^5.5",
"illuminate/pipeline": "^5.5",
"illuminate/routing": "^5.5",
"illuminate/session": "^5.5",
"illuminate/support": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^7.2|^8.0",
"mockery/mockery": "^1.0"
},
"suggest": {
"symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
},
"autoload": {
"psr-4": {
"Helldar\\DigitText\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Helldar\\DigitText\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
},
"laravel": {
"providers": [
"Helldar\\DigitText\\ServiceProvider"
],
"aliases": {
"DigitText": "Helldar\\DigitText\\Facade"
}
}
}
}