Files
rspade_system/vendor/giggsey/locale/composer.json
root f6fac6c4bc Fix bin/publish: copy docs.dist from project root
Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 02:08:33 +00:00

59 lines
1.3 KiB
JSON
Executable File

{
"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": "^8.1"
},
"require-dev": {
"ext-json": "*",
"php-coveralls/php-coveralls": "^2.7",
"phing/phing": "^2.17.4",
"pear/versioncontrol_git": "^0.5",
"pear/pear-core-minimal": "^1.10",
"pear/pear_exception": "^1.0",
"phpunit/phpunit": "^10.5.45",
"symfony/console": "^6.4",
"symfony/filesystem": "6.4",
"symfony/process": "^6.4",
"symfony/finder": "^6.4",
"symfony/var-exporter": "^6.4",
"friendsofphp/php-cs-fixer": "^3.66"
},
"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"
}
}