Create new Tag for branch 0.3.*
cristobal opened this issue ยท 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.
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?
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/'
);
Ok I'll try ๐
You just need to update the package at packagist.org
On 31 May 2013 07:51, "Faisal Salman" notifications@github.com wrote:
Ok I'll try [image: ๐]
โ
Reply to this email directly or view it on GitHubhttps://github.com//issues/12#issuecomment-18724451
.
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?
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" notifications@github.com 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//issues/12#issuecomment-18724962
.
Sorry typo meant: fetch from fit account => git account
On 31 May 2013 10:58, "Cristobal Dabed" cristobal@furusystems.com 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" notifications@github.com 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//issues/12#issuecomment-18724962
.
Did you setup the simple-excel package at packagist.org? Well here is a
nice explanation on auto pull
Hounddog/DoctrineDataFixtureModule#11
On 31 May 2013 11:00, "Cristobal Dabed" cristobal@furusystems.com wrote:
Sorry typo meant: fetch from fit account => git account
On 31 May 2013 10:58, "Cristobal Dabed" cristobal@furusystems.com 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" notifications@github.com 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//issues/12#issuecomment-18724962
.
Seems like this still isn't working correctly?