Download the PHP package qronicle/qexcel without Composer

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

QExcel

The Qronicle (or Quick - still haven't really decided) Excel library is an experimental Excel reader based on PHPExcel (http://phpexcel.codeplex.com/). It uses less resources by only looking at the actual content, ignoring styles etc.

This library should be helpful when importing excel files where the styling is not important. Keep in mind that it will only ever contain the Excel readers.

Progress

Basic functionality is all in place. The optimized Excel5, Excel2003XML, Excel2007 and CSV Readers are mostly ready. Everything is tied together by the QExcel class (that can be used as a replacement to PHPExcel's IO factory).

Up next is adding more documentation, example files (the test files I use now are not open for publication) and extending the index file with more sweetness to test out. If everything works I'll probably add the OO and other Readers from PHPExcel. I also need to check for updates on the PHPExcel front, should they have improved their readers.

Composer installation

Getting started

Performance

Tested with a file containing 2400 lines and 22 columns (mostly text and number fields). PHPExcel used setReadDataOnly as true.

Note that these are quickly made tests and that they are just an indication of the amount of memory and time that is won by ignoring the (for this library) unimportant data.

Excel2007 Reader

PHPExcel QExcel Gain
Memory usage 158.76 MB 8.87 MB 5.6% (18 times less)
Duration 18.35 seconds 3.01 seconds 16.4% (6 times faster)

Excel5 Reader

PHPExcel QExcel Gain
Memory usage 62.46 MB 12.40 MB 19.8% (5 times less)
Duration 7.77 seconds 2.86 seconds 36.8% (3 times faster)

Excel2003XML Reader

PHPExcel QExcel Gain
Memory usage 172.29 MB 6.08 MB 3.5% (28 times less)
Duration 13.67 seconds 2.66 seconds 36.8% (5 times faster)

CSV Reader

PHPExcel QExcel Gain
Memory usage 55.29 MB 6.31 MB 11.4% (9 times less)
Duration 6.80 seconds 0.42 seconds 6.1% (16 times faster)

All versions of qexcel with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.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 qronicle/qexcel contains the following files

Loading the files please wait ....