├── .gitignore ├── tests ├── bootstrap.php ├── extractTitle.latin1.html ├── extractTitle.html └── BookmarkManagerTest.php ├── htpasswd ├── htdocs ├── .htaccess ├── bookmarklet.php ├── style.css ├── index.php ├── bookmarkManager.js └── normalize.css ├── composer.json ├── Dockerfile ├── .editorconfig ├── psalm.xml ├── conf └── apache-extra.conf ├── phpunit.xml ├── docker-compose.yml ├── Makefile ├── LICENSE ├── README.md ├── src ├── DB.php └── BookmarkManager.php └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .env 3 | .phpunit.result.cache 4 | .php-cs-fixer.cache 5 | /db 6 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |