1{ 2 "name": "php81_bc/strftime", 3 "description": "Locale-formatted strftime using IntlDateFormatter (PHP 8.1 compatible)", 4 "license": "MIT", 5 "authors": [ 6 { 7 "name": "Fernando Herrero", 8 "homepage": "https://github.com/alphp/strftime/graphs/contributors" 9 } 10 ], 11 "support": { 12 "issues": "https://github.com/alphp/strftime/issues", 13 "source": "https://github.com/alphp/strftime" 14 }, 15 "require": { 16 "php": ">=7.1.0" 17 }, 18 "suggest": { 19 "ext-intl": "For proper locale aware output" 20 }, 21 "require-dev": { 22 "phpunit/phpunit": "@stable" 23 }, 24 "scripts": { 25 "test": "vendor/bin/phpunit" 26 }, 27 "scripts-descriptions": { 28 "test": "Run PHPUnit tests" 29 }, 30 "autoload": { 31 "files": [ 32 "src/php-8.1-strftime.php" 33 ], 34 "psr-4": { 35 "PHP81_BC\\strftime\\": "src" 36 } 37 }, 38 "autoload-dev": { 39 "psr-4": { 40 "PHP81_BC\\Tests\\": "tests/" 41 } 42 } 43} 44