Merge pull request #1417 from acelaya-forks/feature/kutt-import

Updated importer with support for Kutt.it
This commit is contained in:
Alejandro Celaya 2022-04-14 12:51:56 +02:00 committed by GitHub
commit fe28d6fba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View File

@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
## [Unreleased] ## [Unreleased]
### Added ### Added
* [#1294](https://github.com/shlinkio/shlink/issues/1294) Allowed to specify a specific domain when importing URLs from YOURLS. * [#1294](https://github.com/shlinkio/shlink/issues/1294) Allowed to specify a specific domain when importing URLs from YOURLS.
* [#1416](https://github.com/shlinkio/shlink/issues/1416) Added support to import URLs from Kutt.it.
### Changed ### Changed
* [#1359](https://github.com/shlinkio/shlink/issues/1359) Hidden database commands. * [#1359](https://github.com/shlinkio/shlink/issues/1359) Hidden database commands.

View File

@ -50,7 +50,7 @@
"shlinkio/shlink-common": "^4.4", "shlinkio/shlink-common": "^4.4",
"shlinkio/shlink-config": "^1.6", "shlinkio/shlink-config": "^1.6",
"shlinkio/shlink-event-dispatcher": "^2.3", "shlinkio/shlink-event-dispatcher": "^2.3",
"shlinkio/shlink-importer": "dev-main#75d50f9 as 3.0", "shlinkio/shlink-importer": "dev-main#af0e05e as 3.0",
"shlinkio/shlink-installer": "dev-develop#d02f256 as 7.1", "shlinkio/shlink-installer": "dev-develop#d02f256 as 7.1",
"shlinkio/shlink-ip-geolocation": "^2.2", "shlinkio/shlink-ip-geolocation": "^2.2",
"symfony/console": "^6.0", "symfony/console": "^6.0",

View File

@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
return [
'app_options' => [
'version' => 'latest',
],
];