simple-excel-php icon indicating copy to clipboard operation
simple-excel-php copied to clipboard

Create new Tag for branch 0.3.*

Open cristobal opened this issue 11 years ago • 9 comments

Create new Tag for branch 0.3.*, would be fine to have new tag for the current 0.3 branch. Since it also would include the updated changes and autoloading from the composer.json.

cristobal avatar May 14 '13 21:05 cristobal

Think I may have been bitten by this one. Installing exactly as the README says, with:

"require" : {
    "faisalman/simple-excel-php" : "0.3.*"
}

I get nothing about SimpleExcel appearing in any of Composer's autoload files. And therefore the next bit in the README fails with a class-not-found error:

use SimpleExcel\SimpleExcel
$excel = new SimpleExcel('CSV');

Is this error expected until the autoload feature is added?

micmath avatar May 27 '13 16:05 micmath

The only thing needed is that @faisalman updates the package under packagist.org with the correct tag to use, and it would be auto added automatically to the autoload_namespaces.php file.

Now you need to add it manually to the vendor/composer/autoload_namespaces.php like

return array(
    …
    'SimpleExcel' => $vendorDir . '/faisalman/simple-excel-php/src/'
);

cristobal avatar May 31 '13 01:05 cristobal

Ok I'll try :+1:

faisalman avatar May 31 '13 05:05 faisalman

You just need to update the package at packagist.org On 31 May 2013 07:51, "Faisal Salman" [email protected] wrote:

Ok I'll try [image: :+1:]

— Reply to this email directly or view it on GitHubhttps://github.com/faisalman/simple-excel-php/issues/12#issuecomment-18724451 .

cristobal avatar May 31 '13 05:05 cristobal

Hi Cristobal, sorry if it may sound odd but can you assist me how to update? is it because packagist.org doesn't automatically pull from github?

faisalman avatar May 31 '13 06:05 faisalman

Hi man not sure how i can help just now, no pc responding from phone back home on sunday. But yes it does not automatically pull added a package myself there but have not got the gist onto automatic pulling myself yet. The current package at packagist.org is 0.3.7 but if you login and do an update to fetch from your fit account it should work and fetch from the latest 0.3.14?

Good luck otherwise back on sunday can help look into it then! On 31 May 2013 08:11, "Faisal Salman" [email protected] wrote:

Hi Cristobal, sorry if it may sound odd but can you assist me how to update? is it because packagist.org doesn't automatically pull from github?

— Reply to this email directly or view it on GitHubhttps://github.com/faisalman/simple-excel-php/issues/12#issuecomment-18724962 .

cristobal avatar May 31 '13 08:05 cristobal

Sorry typo meant: fetch from fit account => git account On 31 May 2013 10:58, "Cristobal Dabed" [email protected] wrote:

Hi man not sure how i can help just now, no pc responding from phone back home on sunday. But yes it does not automatically pull added a package myself there but have not got the gist onto automatic pulling myself yet. The current package at packagist.org is 0.3.7 but if you login and do an update to fetch from your fit account it should work and fetch from the latest 0.3.14?

Good luck otherwise back on sunday can help look into it then! On 31 May 2013 08:11, "Faisal Salman" [email protected] wrote:

Hi Cristobal, sorry if it may sound odd but can you assist me how to update? is it because packagist.org doesn't automatically pull from github?

— Reply to this email directly or view it on GitHubhttps://github.com/faisalman/simple-excel-php/issues/12#issuecomment-18724962 .

cristobal avatar May 31 '13 09:05 cristobal

Did you setup the simple-excel package at packagist.org? Well here is a nice explanation on auto pull

https://github.com/Hounddog/DoctrineDataFixtureModule/issues/11 On 31 May 2013 11:00, "Cristobal Dabed" [email protected] wrote:

Sorry typo meant: fetch from fit account => git account On 31 May 2013 10:58, "Cristobal Dabed" [email protected] wrote:

Hi man not sure how i can help just now, no pc responding from phone back home on sunday. But yes it does not automatically pull added a package myself there but have not got the gist onto automatic pulling myself yet. The current package at packagist.org is 0.3.7 but if you login and do an update to fetch from your fit account it should work and fetch from the latest 0.3.14?

Good luck otherwise back on sunday can help look into it then! On 31 May 2013 08:11, "Faisal Salman" [email protected] wrote:

Hi Cristobal, sorry if it may sound odd but can you assist me how to update? is it because packagist.org doesn't automatically pull from github?

— Reply to this email directly or view it on GitHubhttps://github.com/faisalman/simple-excel-php/issues/12#issuecomment-18724962 .

cristobal avatar May 31 '13 09:05 cristobal

Seems like this still isn't working correctly?

jamespsterling avatar Nov 21 '17 20:11 jamespsterling