forked from RadicalMart/lib_phonenumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 1.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "radicalmart/libphonenumber",
"type": "library",
"description": "Библиотека для разбора, форматирования и проверки международных телефонных номеров.",
"authors": [
{
"name": "Artem Vasilev",
"homepage": "https://webmasterskaya.xyz",
"role": "Developer"
}
],
"homepage": "https://github.com/RadicalMart/lib_phonenumber",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/RadicalMart/lib_phonenumber/issues",
"source": "https://github.com/RadicalMart/lib_phonenumber"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.2.5",
"giggsey/libphonenumber-for-php": "^8.13.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.34",
"friendsofphp/php-cs-fixer": "v3.4.0"
},
"autoload": {
"psr-4": {
"RadicalMart\\PhoneNumber\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RadicalMart\\PhoneNumber\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
".github/",
".editorconfig",
".gitattributes",
".gitignore",
"joomla/",
"tests/",
"phpunit.xml.dist",
".php-cs-fixer.joomla.php",
".php-cs-fixer.dist.php"
]
},
"scripts": {
"test": [
"phpunit --color=always"
],
"test-no-coverage": [
"phpunit --color=always --no-coverage"
],
"cs": [
"php-cs-fixer fix --ansi --dry-run --diff"
],
"cs-fix": [
"php-cs-fixer fix --ansi"
],
"joomla-cs": [
"@cs --config=.php-cs-fixer.joomla.php"
],
"joomla-cs-fix": [
"@cs-fix --config=.php-cs-fixer.joomla.php"
],
"check": [
"@cs",
"@joomla-cs",
"@test-no-coverage"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
}
}