TheRayTracerChallenge/composer.json
2019-09-21 15:45:41 +02:00

24 lines
551 B
JSON

{
"name": "mirko/the-ray-tracer-challenge",
"description": "My frist 3D renderer based on the book \"The Ray Tracer Challenge\"",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Mirko Janssen",
"email": "mail@mirkojanssen.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.3"
},
"require-dev": {
"phpunit/phpunit": "^8.3"
},
"autoload": {
"psr-4": {
"ItsAMirko\\RayTracer\\": "src/"
}
}
}