Download the PHP package atomsk/csv-manager without Composer

On this page you can find all versions of the php package atomsk/csv-manager. 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 csv-manager

📦 CSV Manager

PHP Pipeline Status Downloads Latest Version

PHP library for efficient management of large CSV files. Designed for projects in Laravel, Symfony, or native PHP, with a simple and customizable interface.

⚠️ Deprecated Features

Some features and configurations have been deprecated and will be removed in future versions. Please update your code accordingly to ensure compatibility.

1. Allowed_extensions as a string:

Starting from version 1.3, the allowed_extensions variable in the csv-manager.php configuration file must now be defined as an array instead of a string.

old (Deprecated):

New (recommended):

2. Using CsvManager\Csv facade:

Starting from version 1.1, the namespace of the Csv facade has changed.

old (Deprecated):

New (recommended):

3. Symfony environment support:

Starting from the version 1.3, support for the symfony environment has been deprecated. This is because the SymfonyCsv.php and NativeCsv.php integration are very similar and will be merged in future versions.

Old (Deprecated):

New (recommended):

🚀 How to install

You just need to install it like any php library with composer.

⚙️ Configuration

The library allows you to customize its behavior through the configuration file csv-manager.php.
You can generate a custom configuration for your environment with:

The file looks like this:

🛠️ Example

The library can be used in two different ways: Using the Facade (static access) or using the Object-Oriented approach (non-static).

Using the Facade (recommended for simplicity)

For larger files, you can add custom functions that perform any process you want.

Using the Non-Static (Object-Oriented) approach

If you need more control or want to integrate the library deeply with your own dependency container, you can directly instantiate the integration classes.

Example with Native environment

Example with Laravel environment

Example with Symfony environment

⚠️ Deprecated since version 1.3 Symfony environment support will be removed in future versions. Prefer using the Native or Laravel environments.

Works with PHP 8.0, 8.1, 8.2, 8.3 and 8.4

🪪 License

MIT - Open source, free to use and modify.


All versions of csv-manager with dependencies

PHP Build Version
Package Version
Requires php Version >=8.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 atomsk/csv-manager contains the following files

Loading the files please wait ...