Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamwojs/formatted-textline
https://github.com/adamwojs/formatted-textline
ibexa-bundle ibexa-platform ibexa-platform-bundle
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/adamwojs/formatted-textline
- Owner: adamwojs
- License: mit
- Created: 2021-05-10T20:23:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-18T11:17:08.000Z (9 months ago)
- Last Synced: 2024-10-04T13:13:49.147Z (about 1 month ago)
- Topics: ibexa-bundle, ibexa-platform, ibexa-platform-bundle
- Language: PHP
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# formatted-textline
## Installation
### Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
```console
$ composer require adamwojs/ibexa-formatted-textline
```### Applications that don't use Symfony Flex
#### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require adamwojs/ibexa-formatted-textline
```This command requires you to have Composer installed globally, as explained
in the [installation chapter](https://getcomposer.org/doc/00-intro.md) of the Composer documentation.#### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:```php
// config/bundles.phpreturn [
// ...
AdamWojs\IbexaFormattedTextLineBundle\IbexaFormattedTextLineBundle::class => ['all' => true],
];
```