Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yiirocks/svg-inline
Inline SVG Images for Yii
https://github.com/yiirocks/svg-inline
extension icon icons inline inline-svg-images packagist svg yii yii3
Last synced: 4 months ago
JSON representation
Inline SVG Images for Yii
- Host: GitHub
- URL: https://github.com/yiirocks/svg-inline
- Owner: YiiRocks
- License: mit
- Created: 2020-07-24T16:44:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T08:57:39.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T21:41:27.015Z (4 months ago)
- Topics: extension, icon, icons, inline, inline-svg-images, packagist, svg, yii, yii3
- Language: PHP
- Homepage: https://yii.rocks/svg-inline
- Size: 88.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Inline SVG Images for Yii
> **inline**
> ***/ˈɪnlʌɪn/***
> *adjective*
>
> included as part of the main text on a page, rather than in a separate sectionThis extension provides simple functions for [Yii framework 3.0](http://www.yiiframework.com/) applications to add
SVG Images inline.[![Packagist Version](https://img.shields.io/packagist/v/yiirocks/svg-inline.svg)](https://packagist.org/packages/yiirocks/svg-inline)
[![PHP from Packagist](https://img.shields.io/packagist/php-v/yiirocks/svg-inline.svg)](https://php.net/)
[![Packagist](https://img.shields.io/packagist/dt/yiirocks/svg-inline.svg)](https://packagist.org/packages/yiirocks/svg-inline)
[![GitHub](https://img.shields.io/github/license/yiirocks/svg-inline.svg)](https://github.com/yiirocks/svg-inline/blob/master/LICENSE)## Installation
The package could be installed via composer:
```bash
composer require yiirocks/svg-inline
```It can be extended with [Bootstrap](https://getbootstrap.com/) [Icons](https://icons.getbootstrap.com/) and/or [Font Awesome](https://fontawesome.com/) [Icons](https://fontawesome.com/icons):
```bash
composer require yiirocks/svg-inline-bootstrap
composer require yiirocks/svg-inline-fontawesome
```## Usage
The default configuration will enable `$svg` in any view.
```php
echo $svg->file('@assets/image.svg');
```Available options can be found in the [documentation](https://www.yii.rocks/svg-inline/).
## Unit testing
The package is tested with [PHPUnit](https://phpunit.de/). To run tests:
```bash
./vendor/bin/phpunit
```[![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/YiiRocks/svg-inline.svg)](https://codeclimate.com/github/YiiRocks/svg-inline/maintainability)
[![Codacy branch grade](https://img.shields.io/codacy/grade/1a826829576d45668a766abaae2321bb/master.svg)](https://app.codacy.com/gh/YiiRocks/svg-inline)
[![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/yiirocks/svg-inline/master.svg)](https://scrutinizer-ci.com/g/yiirocks/svg-inline/?branch=master)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/yiirocks/svg-inline/analysis)