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/"] + } +}