danog.github.io/example-composer.json
2017-08-16 16:15:20 +02:00

32 lines
640 B
JSON

{
// modify this
"name": "yourname/yourproject",
"description": "Project description",
"license": "AGPLv3",
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil.gentili.dg@gmail.com"
}
],
"autoload": {
"psr-0": {
"yourname\\YourProject\\": "src/"
}
}
// DO NOT TOUCH THIS
"type": "project",
"require": {
"danog/madelineproto": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/danog/phpseclib"
}
],
"minimum-stability": "dev",
}