fits-php/composer.json
2024-09-24 23:03:36 +02:00

26 lines
666 B
JSON

{
"name": "dumbastro/fits-php",
"description": "A crappy and dumb FITS library for PHP to (possibly?) interact with astronomical images",
"type": "library",
"version": "0.1",
"require": {
"psr/log": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"friendsofphp/php-cs-fixer": "^3.64",
"symfony/var-dumper": "^7.1",
"phpunit/phpunit": "^11.3"
},
"scripts": {
"run-pstan": "vendor/bin/phpstan analyze src/ --level 6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Dumbastro\\FitsPhp\\": "src/"
}
},
"minimum-stability": "beta"
}