From 409a154f304ed1344d7f0f12f863d345ddeba1f0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 9 Jul 2018 07:08:48 +0200 Subject: v3.6.7 --- composer-chronos.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 composer-chronos.json (limited to 'composer-chronos.json') diff --git a/composer-chronos.json b/composer-chronos.json new file mode 100644 index 0000000..77a7e27 --- /dev/null +++ b/composer-chronos.json @@ -0,0 +1,62 @@ +{ + "name": "cakephp/chronos", + "type": "library", + "description": "A simple API extension for DateTime.", + "keywords": [ + "date", + "time", + "DateTime" + ], + "homepage": "http://cakephp.org", + "license": "MIT", + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "http://nesbot.com" + }, + { + "name": "The CakePHP Team", + "homepage": "http://cakephp.org" + } + ], + "support": { + "issues": "https://github.com/cakephp/chronos/issues", + "irc": "irc://irc.freenode.org/cakephp", + "source": "https://github.com/cakephp/chronos" + }, + "require": { + "php": "^5.5.9|^7" + }, + "require-dev": { + "phpunit/phpunit": "<6.0", + "athletic/athletic": "~0.1", + "cakephp/cakephp-codesniffer": "~2.3", + "phpbench/phpbench": "@dev", + "phpstan/phpstan": "^0.6.4" + }, + "autoload": { + "psr-4": { + "Cake\\Chronos\\": "src" + }, + "files": ["src/carbon_compat.php"] + }, + "autoload-dev": { + "psr-4": { + "Cake\\Chronos\\Test\\": "tests" + }, + "files": ["tests/TestCase.php"] + }, + "scripts": { + "check": [ + "@test", + "@cs-check", + "@phpstan" + ], + "test": "phpunit", + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "bench": "phpbench run", + "phpstan": "phpstan analyze -c phpstan.neon -l 3 src tests" + } +} -- cgit