-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.22 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "phpviet/symfony-number-to-words",
"type": "symfony-bundle",
"description": "Symfony number to words hổ trợ chuyển đổi số sang chữ số Tiếng Việt",
"keywords": [
"phpviet",
"symfony-number-to-words"
],
"homepage": "https://github.com/phpviet/symfony-number-to-words",
"license": "MIT",
"authors": [
{
"name": "Vuong Xuong Minh",
"email": "vuongxuongminh@gmail.com"
}
],
"require": {
"php": "^7.1",
"phpviet/number-to-words": "^1.0",
"symfony/framework-bundle": "^4.3"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^1.4",
"phpunit/phpunit": "~7.5",
"symfony/twig-bundle": "^4.3",
"scrutinizer/ocular": "^1.5"
},
"autoload": {
"psr-4": {
"PHPViet\\Symfony\\NumberToWords\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPViet\\Symfony\\NumberToWords\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}