From 39a6d597b936471823b15ae6d07b637e4b09016f Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Tue, 13 Nov 2012 19:21:12 +1100 Subject: [PATCH] Add composer support --- .gitignore | 3 +++ composer.json | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b919d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +composer.lock +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..da86974 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "phenx/php-font-lib", + "type": "library", + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/PhenX/php-font-lib", + "license": "LGPL", + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + } + ], + "autoload": { + "classmap": ["classes/"] + } +}