From f2c1262994c40676d681a8b8e6284046d4fb2812 Mon Sep 17 00:00:00 2001 From: Sebastian Kurfuerst Date: Tue, 1 Oct 2024 14:57:10 +0200 Subject: [PATCH] FEATURE: fully working laravel support --- docs/README.md | 19 ++++++++++++------- docs/whats-new.md | 8 ++++++++ 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/docs/README.md b/docs/README.md index 114dc1c..6bf2b3a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -26,11 +26,13 @@ ---- -- [Features](#features) -- [Installation](#installation) -- [Usage](#usage) -- [Usage Server-to-Server](#usage-server-to-server) -- [License](#license) +* [Features](#features) +* [Installation](#installation) +* [Usage](#usage) + * [Configuration](#configuration) +* [Usage Server-to-Server](#usage-server-to-server) +* [Development](#development) +* [License](#license) * [Architecture](https://sandstorm.github.io/synco/#/architecture) @@ -74,7 +76,10 @@ Features: * **Neos / Flow Applications** * with local Resources * **NEW [since 1.2.0](./whats-new.md): with resources stored in S3** - * **NEW [since 1.2.0](./whats-new.md): Smart Transfer - not downloading thumbnail resources for up to 80% size reduction.** + * **NEW [since 1.2.0](./whats-new.md): Smart Transfer - not downloading thumbnail resources for up to 80% size reduction.** + * **NEW [since 2.0.0](./whats-new.md): Laravel support** + * with DB support + * with local public and private resources * (later, other frameworks will be added here) * **multiple file-sets** supported. This means you can choose to only sync your database, but not your binary resources/assets. * **Speed Optimized**: publicly available binary assets are not zipped extra; but the already-public files are simply downloaded. @@ -165,7 +170,7 @@ curl https://sandstorm.github.io/synco/synco | sh -s - receive ts-...... ....... # Development -* if you are developing synco in a Docker container this will be helpful for building `GOOS=linux go build` +See [CONTRIBUTING.md](CONTRIBUTING.md) for details on the dev process. # License diff --git a/docs/whats-new.md b/docs/whats-new.md index 6c7b42a..a0b90bd 100644 --- a/docs/whats-new.md +++ b/docs/whats-new.md @@ -1,5 +1,13 @@ # What's New +## Version 2.0.0 (01. October 2024) - Laravel Support + +With this release, we support **Laravel** framework as first-class framework: + +- Download database dump from Laravel applications (encrypted) +- Download public resources from Laravel applications +- Download private resources from Laravel applications (encrypted) + ## Version 1.3.0 (24. July 2023) - work with different PHP versions With this release, we auto-detect the correct PHP version to use during `synco serve`.