24 lines
551 B
JSON
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/"
|
|
}
|
|
}
|
|
}
|