From fae840b108afe0188abee79f0f8a6ddc2efc5bc5 Mon Sep 17 00:00:00 2001 From: kruglov Date: Thu, 4 Jul 2013 11:57:37 +0400 Subject: [PATCH] composer.son added --- composer.json | 29 +++++++++++++++++++ .../IntaroCrmRestApi.php | 0 2 files changed, 29 insertions(+) create mode 100644 composer.json rename IntaroCrmRestApi.php => lib/IntaroCrmRestApi.php (100%) diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d9f7ae8 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "intaro/crm-rest-api", + "description": "PHP class that provides a simple way to interact with Intaro CRM Rest API", + "type": "library", + "keywords": ["api", "Intaro CRM"], + "homepage": "http://www.intarocrm.ru/", + "authors": [ + { + "name": "Kruglov Kirill", + "email": "kruglov@intaro.ru", + "role": "Developer" + } + ], + "require": { + "php": ">=5.2.0", + "ext-curl": "*" + }, + "support": { + "email": "support@intarocrm.ru" + }, + "autoload": { + "psr-0": { "Intaro": "lib/" } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} \ No newline at end of file diff --git a/IntaroCrmRestApi.php b/lib/IntaroCrmRestApi.php similarity index 100% rename from IntaroCrmRestApi.php rename to lib/IntaroCrmRestApi.php