w3lifer / yii2-doc-bookmarks
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/w3lifer/yii2-doc-bookmarks
Requires
This package is auto-updated.
Last update: 2025-09-30 13:40:29 UTC
README
Download
Your can download the latest bookmarks on the following site: https://data.grinvik.com.
Installation
composer require w3lifer/yii2-doc-bookmarks
Usage
- Create
yii2-doc-bookmarks.php
file with the following content:
<?php use w3lifer\yii2\DocBookmarks; $docBookmarks = new DocBookmarks(); file_put_contents( __DIR__ . '/yii2-doc-bookmarks-as-array.php', '<?php' . "\n\n" . var_export($docBookmarks->getAsArray(), true) . ';' ); file_put_contents( __DIR__ . '/yii2-doc-bookmarks-as-netscape-bookmarks.html', $docBookmarks->getAsNetscapeBookmarks() ); echo 'Done!' . "\n";
- Run it from the command line to get two files with bookmarks:
php yii2-doc-bookmarks.php
- Run
vendor/bin/yii2-doc-bookmarks
to getyii2-doc-bookmarks-as-array.php
andyii2-doc-bookmarks-as-netscape-bookmarks.html
in the parent directory of thevendor
directory.