Create example-composer.json

This commit is contained in:
Daniil Gentili 2017-08-16 16:15:20 +02:00 committed by GitHub
parent cb91e9bf11
commit 7814090e32

31
example-composer.json Normal file
View File

@ -0,0 +1,31 @@
{
// 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",
}