Download the PHP package imarc/craft-sheetsync without Composer

On this page you can find all versions of the php package imarc/craft-sheetsync. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package craft-sheetsync

CSV Sync plugin for Craft CMS 3.x

Allows you to import/sync spreadsheet files into Craft sections as entries.

Configuration

Settings should be configured in craft/config/sheet-sync.php. Default settings are grouped together, and other settings are grouped by the name of the sync:

Valid Settings

Fields

Fields are configured as an associative array. The key should be the name of a Craft field handle. The value can either be a string (and one of the CSV file column headers), or a closure (or callable) that is passed the current row (as an associative array) and the sync instance, that should return the value for this field. These closures are called after other populating is done, so if you need to cross reference, you can. For example, this will search through the current section for users by name based on the current row's value in 'Assistant Name' and create the relationship for Craft:

Builtin Fields

You can also overwrite all of the following builtin fields. Under most circumstances, you'll only set id and title. It's important to note that for date fields, Craft expects an instance of DateTime and not just a numeric timestamp or string.

Here's an example of what you might put in your config/sheet-sync.php file to deal with a date field:

It's handy to remember that DateTime's constructor can handle all kinds of strings too, such as 'next month', '+90 days', etc.

Usage

The most common way to use this is to access if via the Craft Control Panel under Utilities, Sheet Import. From there, you can select the name of the sync you'd like to run and (optionally) upload a CSV file.

Via Command Line

To run a sync, first navigate to the folder in /var/www/ that has craft. Then

You can optionally specify a specific file to use:


All versions of craft-sheetsync with dependencies

PHP Build Version
Package Version
Requires craftcms/cms Version ^3.0.0-RC1
phpoffice/phpspreadsheet Version ^1.3
neitanod/forceutf8 Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package imarc/craft-sheetsync contains the following files

Loading the files please wait ....