{"id":29035383,"url":"https://github.com/professionalwiki/fontawesome","last_synced_at":"2025-06-26T12:09:18.760Z","repository":{"id":62526541,"uuid":"215401663","full_name":"ProfessionalWiki/FontAwesome","owner":"ProfessionalWiki","description":"Allows to insert Font Awesome Free icons in page","archived":false,"fork":false,"pushed_at":"2025-05-06T10:28:42.000Z","size":5215,"stargazers_count":4,"open_issues_count":8,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-08T21:48:37.054Z","etag":null,"topics":["extension","fontawesome","fontawesome5","icons","mediawiki","parser-functions"],"latest_commit_sha":null,"homepage":"https://www.mediawiki.org/wiki/Extension:FontAwesome","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ProfessionalWiki.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"JeroenDeDauw","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-10-15T21:39:54.000Z","updated_at":"2025-05-06T10:28:44.000Z","dependencies_parsed_at":"2025-05-06T11:42:15.497Z","dependency_job_id":"d3fa6183-fd6a-44dc-8e55-d8e9c3674fd6","html_url":"https://github.com/ProfessionalWiki/FontAwesome","commit_stats":{"total_commits":40,"total_committers":7,"mean_commits":5.714285714285714,"dds":0.6,"last_synced_commit":"fd465d1adb3fd6454105594dee4f4136772b171d"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ProfessionalWiki/FontAwesome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProfessionalWiki%2FFontAwesome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProfessionalWiki%2FFontAwesome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProfessionalWiki%2FFontAwesome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProfessionalWiki%2FFontAwesome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProfessionalWiki","download_url":"https://codeload.github.com/ProfessionalWiki/FontAwesome/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProfessionalWiki%2FFontAwesome/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262063552,"owners_count":23252767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extension","fontawesome","fontawesome5","icons","mediawiki","parser-functions"],"created_at":"2025-06-26T12:09:17.178Z","updated_at":"2025-06-26T12:09:18.755Z","avatar_url":"https://github.com/ProfessionalWiki.png","language":"JavaScript","funding_links":["https://github.com/sponsors/JeroenDeDauw"],"categories":[],"sub_categories":[],"readme":"# FontAwesome\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/ProfessionalWiki/FontAwesome/ci.yml?branch=master)](https://github.com/ProfessionalWiki/FontAwesome/actions?query=workflow%3ACI)\n[![Latest Stable Version](https://poser.pugx.org/mediawiki/font-awesome/v/stable)](https://packagist.org/packages/mediawiki/font-awesome)\n[![Packagist download count](https://poser.pugx.org/mediawiki/font-awesome/downloads)](https://packagist.org/packages/mediawiki/font-awesome)\n\nThe [FontAwesome][mw-font-awesome] extension to MediaWiki provides parser\nfunctions to insert [Font Awesome Free][font-awesome] icons into the wiki text.\n\nCurrently Font Awesome Free version 6.7.2 is included.\n\n## Requirements\n\n- PHP 7.4.3 or later\n- MediaWiki 1.39 or later\n\n## Installation\n\n### Using Composer\n\nUsing [Composer][composer] is the recommended way to install this extension.\n\nRun the following commands from the MediaWiki installation directory:\n\n1. `COMPOSER=composer.local.json php composer.phar require --no-update mediawiki/font-awesome ^2.0`\n2. `php composer.phar update --no-dev mediawiki/font-awesome`\n\nTo update the extension, run the last command again.\n\n### Using a download from GitHub\n\n1. Download a tar ball or zip file from [GitHub](https://github.com/ProfessionalWiki/FontAwesome/releases/latest)\n2. Extract it into the `extensions` directory of your MediaWiki installation\n3. Rename the folder `FontAwesome-...` to `FontAwesome`\n\nTo update the extension delete the `FontAwesome` folder completely and re-install.\n\n## Activation\n\nAdd the following line to your `LocalSettings.php`:\n```php\nwfLoadExtension( 'FontAwesome' );\n```\n\n## Configuration\n\nThere are two render modes available for FontAwesome icons:\n* **Web Fonts with CSS:** This implementation uses web fonts as the file format and relies on the browser to render icons as it would any custom font.\n* **SVG with JavaScript:** This implementation encodes icon data and the mechanism to display them in the browser in JavaScript code that the browser executes.\n\nThe render mode can be selected by setting the variable `$wgFaRenderMode` in\nLocalSettings.php. Allowed values are: `webfonts` (default) and `javascript`.\n\n**Example:** `$wgFaRenderMode = 'javascript';`\n\nFor a discussion of the advantages and drawbacks of the render modes see\n[Performance \u0026 Font Awesome](https://fontawesome.com/how-to-use/on-the-web/other-topics/performance)\non fontawesome.com.\n\n## Usage\n\nThis extension defines three parser functions:\n* `{{#far:...}}` to insert an icon from the FontAwesome Regular font\n* `{{#fas:...}}` to insert an icon from the FontAwesome Solid font\n* `{{#fab:...}}` to insert an icon from the FontAwesome Brands font\n\n**Example:**\n`{{#fab:wikipedia-w}}` will insert the Wikipedia-W\n\nFor valid icon names see https://fontawesome.com/v6/search.\n\n### Styling\n* `{{#far:... ...}}` to insert an icon from the FontAwesome Regular font with additional classes\n* `{{#fas:... ...}}` to insert an icon from the FontAwesome Solid font with additional classes\n* `{{#fab:... ...}}` to insert an icon from the FontAwesome Brands font with additional classes\n\n**Example:**\n`{{#fab:wikipedia-w fa-spin}}` will insert a spinning Wikipedia-W\n\nFor valid Font Awesome class names see https://docs.fontawesome.com/web/style/styling.\n\n## Professional Support\n\nThe FontAwesome extension is maintained by [Professional Wiki](https://professional.wiki).\nYou can [contract us][contact-form] to help you with installation or customization of FontAwesome.\nWe also do development work.\n\n## License\n\n[GNU General Public License, Version 3][license] or later.\n\nThe Font Awesome Free package is included in the extension. See its\n[license file][font-awesome-license] for details.\n\n[license]: https://www.gnu.org/copyleft/gpl.html\n[font-awesome-license]: ./res/fontawesome/LICENSE.txt\n[mw-font-awesome]: https://www.mediawiki.org/wiki/Extension:FontAwesome\n[font-awesome]: https://fontawesome.com/\n[composer]: https://getcomposer.org/\n[contact-form]: https://professional.wiki/en/contact\n\n## Release notes\n\n### Version 3.0.0\n\nReleased on March 15, 2025.\n\n* Raised the minimum MediaWiki version from 1.35 to 1.39\n* Updated FontAwesome to 6.7.2\n\n### Version 2.0.0\n\nReleased on January 27, 2023.\n\n* Raised the minimum PHP version from 7.0 to 7.4.3\n* Raised the minimum MediaWiki version from 1.31 to 1.35\n* Updated to FontAwesome 6\n\n### Version 1.1.0\n\nReleased on January 25, 2023.\n\n* Updated FontAwesome to 5.15.4\n\n### Version 1.0.0\n\nReleased on October 20, 2019.\n\n* Initial release\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprofessionalwiki%2Ffontawesome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprofessionalwiki%2Ffontawesome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprofessionalwiki%2Ffontawesome/lists"}