From 7814090e3252ce6d66cd4d0cd3374cfff276af51 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 16 Aug 2017 16:15:20 +0200 Subject: [PATCH] Create example-composer.json --- example-composer.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 example-composer.json diff --git a/example-composer.json b/example-composer.json new file mode 100644 index 0000000..d019a75 --- /dev/null +++ b/example-composer.json @@ -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", +}