From 114d1f074e30483b0fddd9a4cc45572b8c070797 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 18 Oct 2025 22:31:25 +0900 Subject: first commit --- composer.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d22502a --- /dev/null +++ b/composer.json @@ -0,0 +1,47 @@ +{ + "name": "nsfisis/next-after", + "description": "PHP port of java.lang.Math.nextAfter() family", + "version": "0.1.0", + "type": "library", + "keywords": ["float"], + "homepage": "https://github.com/nsfisis/php-next-after", + "license": "MIT", + "authors": [ + { + "name": "nsfisis" + } + ], + "support": { + "issues": "https://github.com/nsfisis/php-next-after/issues" + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^12.4", + "symplify/easy-coding-standard": "^12.6" + }, + "autoload": { + "psr-4": { + "Nsfisis\\NextAfter\\": "src/", + "Nsfisis\\NextAfter\\Tests\\": "tests/src/" + } + }, + "config": { + "allow-plugins": { + "phpstan/extension-installer": true + }, + "sort-packages": true + }, + "scripts": { + "ecs": "ecs check", + "ecsfix": "ecs check --fix", + "phpstan": "phpstan analyze", + "phpunit": "phpunit" + } +} -- cgit v1.2.3-70-g09d2