1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "giggsey/locale",
- "description": "Locale functions required by libphonenumber-for-php",
- "minimum-stability": "stable",
- "license": "MIT",
- "authors": [
- {
- "name": "Joshua Gigg",
- "email": "giggsey@gmail.com",
- "homepage": "https://giggsey.com/"
- }
- ],
- "require": {
- "php": ">=7.2"
- },
- "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",
- "symfony/filesystem": "^5.0",
- "symfony/process": "^5.0",
- "symfony/finder": "^5.0"
- },
- "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",
- ".styleci.yml",
- ".travis.yml",
- "build.xml",
- "phpunit.xml.dist"
- ]
- },
- "scripts": {
- "test": "phpunit",
- "metadata": "phing compile"
- }
- }
|