summaryrefslogtreecommitdiffstats
path: root/composer-chronos.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer-chronos.json')
-rw-r--r--composer-chronos.json62
1 files changed, 62 insertions, 0 deletions
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"
+ }
+}