-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
58 lines (58 loc) · 1.34 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
{
"name": "giggsey/locale",
"description": "Locale functions required by libphonenumber-for-php",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Joshua Gigg",
"email": "[email protected]",
"homepage": "https://giggsey.com/"
}
],
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"ext-json": "*",
"php-coveralls/php-coveralls": "^2.0",
"phing/phing": "^2.7",
"pear/versioncontrol_git": "^0.5",
"pear/pear-core-minimal": "^1.9",
"pear/pear_exception": "^1.0",
"phpunit/phpunit": "^8.5|^9.5",
"symfony/console": "^5.0|^6.0",
"symfony/filesystem": "^5.0|^6.0",
"symfony/process": "^5.0|^6.0",
"symfony/finder": "^5.0|^6.0",
"symfony/var-exporter": "^5.2|^6.0",
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"Giggsey\\Locale\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Giggsey\\Locale\\Tests\\": "tests/",
"Giggsey\\Locale\\Build\\": "build/Build/"
}
},
"archive": {
"exclude": [
"build/",
"tests/",
".gitattributes",
".gitignore",
".php-cs-fixer.dist.php",
"build.xml",
"phpunit.xml.dist"
]
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit",
"metadata": "vendor/bin/phing compile"
}
}