From cc954277934123775c08a70b62e2e01ebb1a85c5 Mon Sep 17 00:00:00 2001 From: Adam Laycock Date: Tue, 2 Mar 2021 11:03:44 +0000 Subject: [PATCH] initial commit --- .gitignore | 1 + composer.json | 20 +++++++++++ composer.lock | 90 +++++++++++++++++++++++++++++++++++++++++++++++++ fontawesome.php | 24 +++++++++++++ readme.md | 18 ++++++++++ 5 files changed, 153 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 fontawesome.php create mode 100644 readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a725465 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor/ \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1617f56 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "ed-itsolutions/wp-fontawesome", + "description": "Simple easy to bundle font-awesome for WordPress", + "require": { + "php": "^5.3.3 || ^7.0", + "fortawesome/font-awesome": "^5.15" + }, + "license": "MIT", + "authors": [ + { + "name": "Adam Laycock", + "email": "adam@arcath.net", + "homepage": "https://www.arcath.net", + "role": "Developer" + } + ], + "autoload": { + "files": ["fontawesome.php"] + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..60165e9 --- /dev/null +++ b/composer.lock @@ -0,0 +1,90 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "092ab4e8ebd2fbbfb354dc46437de7ce", + "packages": [ + { + "name": "fortawesome/font-awesome", + "version": "5.15.2", + "source": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome.git", + "reference": "fcec2d1b01ff069ac10500ac42e4478d20d21f4c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/fcec2d1b01ff069ac10500ac42e4478d20d21f4c", + "reference": "fcec2d1b01ff069ac10500ac42e4478d20d21f4c", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC-BY-4.0", + "OFL-1.1", + "MIT" + ], + "authors": [ + { + "name": "Travis Chase", + "homepage": "http://twitter.com/supercodepoet" + }, + { + "name": "Dave Gandy", + "homepage": "http://twitter.com/davegandy" + }, + { + "name": "Rob Madole", + "homepage": "http://twitter.com/robmadole" + }, + { + "name": "Jory Raphael", + "homepage": "http://twitter.com/sensibleworld" + }, + { + "name": "Geremia Taglialatela", + "homepage": "http://twitter.com/gtagliala" + }, + { + "name": "Brian Talbot", + "homepage": "http://twitter.com/talbs" + }, + { + "name": "Mike Wilkerson", + "homepage": "http://twitter.com/mw77" + } + ], + "description": "The iconic font, CSS, and SVG framework", + "homepage": "https://fontawesome.com", + "keywords": [ + "FontAwesome", + "awesome", + "bootstrap", + "font", + "icon", + "svg" + ], + "support": { + "docs": "http://fontawesome.com/how-to-use", + "email": "hello@fontawesome.com", + "issues": "https://github.com/FortAwesome/Font-Awesome/issues", + "source": "https://github.com/FortAwesome/Font-Awesome" + }, + "time": "2021-01-13T20:23:11+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": "^5.3.3 || ^7.0" + }, + "platform-dev": [], + "plugin-api-version": "2.0.0" +} diff --git a/fontawesome.php b/fontawesome.php new file mode 100644 index 0000000..2e3a42e --- /dev/null +++ b/fontawesome.php @@ -0,0 +1,24 @@ +