Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Last active January 14, 2019 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JavierCane/23c6cf6effeaae788e7d to your computer and use it in GitHub Desktop.
Save JavierCane/23c6cf6effeaae788e7d to your computer and use it in GitHub Desktop.
Basic composer.json
{
"name": "unique-name/kata-name",
"description": "Kata description",
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.3"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"phpunit/phpunit": "^7.5"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"UniqueName\\KataName\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UniqueName\\KataNameTest\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment