diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-10-18 22:31:25 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-10-18 22:48:40 +0900 |
| commit | 114d1f074e30483b0fddd9a4cc45572b8c070797 (patch) | |
| tree | f9027bc8dfff6f9cb6cd3d006e10069002f59e08 /composer.json | |
| parent | 751db19873b5cb14bedd8adcb40cee3e3ad6089b (diff) | |
| download | php-next-after-114d1f074e30483b0fddd9a4cc45572b8c070797.tar.gz php-next-after-114d1f074e30483b0fddd9a4cc45572b8c070797.tar.zst php-next-after-114d1f074e30483b0fddd9a4cc45572b8c070797.zip | |
first commit
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 47 |
1 files changed, 47 insertions, 0 deletions
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" + } +} |
