Laravel Shoppingcart installation for the pull request
up vote
1
down vote
favorite
I installed the laravel shopping cart by using composer update which is Crinsane/LaravelShoppingcart as picture below:-
But the problem is under this package there don't have discount features. So I found have someone pull request under this package as picture below:-
The problem is how to I install it to add on discount features as image 2?
laravel github
add a comment |
up vote
1
down vote
favorite
I installed the laravel shopping cart by using composer update which is Crinsane/LaravelShoppingcart as picture below:-
But the problem is under this package there don't have discount features. So I found have someone pull request under this package as picture below:-
The problem is how to I install it to add on discount features as image 2?
laravel github
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I installed the laravel shopping cart by using composer update which is Crinsane/LaravelShoppingcart as picture below:-
But the problem is under this package there don't have discount features. So I found have someone pull request under this package as picture below:-
The problem is how to I install it to add on discount features as image 2?
laravel github
I installed the laravel shopping cart by using composer update which is Crinsane/LaravelShoppingcart as picture below:-
But the problem is under this package there don't have discount features. So I found have someone pull request under this package as picture below:-
The problem is how to I install it to add on discount features as image 2?
laravel github
laravel github
asked 2 days ago
lun7code
458
458
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago
add a comment |
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Inside you composer.json file you can add the repo that you want the code from by doing:
"repositories": [
{
"url": "https://github.com/fraterblack/LaravelShoppingcart",
"type": "git"
}
],
Then change the package name you have for LaravelShoppingcart in composer.json require section to:
"require":{
"fraterblack/LaravelShoppingcart": "dev-master"
}
Then run composer update
(EDIT):
Instead of what I had before, use something like this:
{
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/fraterblack/LaravelShoppingcart"
}
],
"require": {
"gloudemans/shoppingcart": "dev-master"
}
}
It didn't work because "frater" didn't update the composer.json file in their repo so use "gloudemans/shoppingcart": "dev-master"
in "require" instead of "fraterblack/LaravelShoppingcart": "dev-master"
And instead of composer update
just do composer install
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
|
show 6 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Inside you composer.json file you can add the repo that you want the code from by doing:
"repositories": [
{
"url": "https://github.com/fraterblack/LaravelShoppingcart",
"type": "git"
}
],
Then change the package name you have for LaravelShoppingcart in composer.json require section to:
"require":{
"fraterblack/LaravelShoppingcart": "dev-master"
}
Then run composer update
(EDIT):
Instead of what I had before, use something like this:
{
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/fraterblack/LaravelShoppingcart"
}
],
"require": {
"gloudemans/shoppingcart": "dev-master"
}
}
It didn't work because "frater" didn't update the composer.json file in their repo so use "gloudemans/shoppingcart": "dev-master"
in "require" instead of "fraterblack/LaravelShoppingcart": "dev-master"
And instead of composer update
just do composer install
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
|
show 6 more comments
up vote
1
down vote
accepted
Inside you composer.json file you can add the repo that you want the code from by doing:
"repositories": [
{
"url": "https://github.com/fraterblack/LaravelShoppingcart",
"type": "git"
}
],
Then change the package name you have for LaravelShoppingcart in composer.json require section to:
"require":{
"fraterblack/LaravelShoppingcart": "dev-master"
}
Then run composer update
(EDIT):
Instead of what I had before, use something like this:
{
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/fraterblack/LaravelShoppingcart"
}
],
"require": {
"gloudemans/shoppingcart": "dev-master"
}
}
It didn't work because "frater" didn't update the composer.json file in their repo so use "gloudemans/shoppingcart": "dev-master"
in "require" instead of "fraterblack/LaravelShoppingcart": "dev-master"
And instead of composer update
just do composer install
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
|
show 6 more comments
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Inside you composer.json file you can add the repo that you want the code from by doing:
"repositories": [
{
"url": "https://github.com/fraterblack/LaravelShoppingcart",
"type": "git"
}
],
Then change the package name you have for LaravelShoppingcart in composer.json require section to:
"require":{
"fraterblack/LaravelShoppingcart": "dev-master"
}
Then run composer update
(EDIT):
Instead of what I had before, use something like this:
{
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/fraterblack/LaravelShoppingcart"
}
],
"require": {
"gloudemans/shoppingcart": "dev-master"
}
}
It didn't work because "frater" didn't update the composer.json file in their repo so use "gloudemans/shoppingcart": "dev-master"
in "require" instead of "fraterblack/LaravelShoppingcart": "dev-master"
And instead of composer update
just do composer install
Inside you composer.json file you can add the repo that you want the code from by doing:
"repositories": [
{
"url": "https://github.com/fraterblack/LaravelShoppingcart",
"type": "git"
}
],
Then change the package name you have for LaravelShoppingcart in composer.json require section to:
"require":{
"fraterblack/LaravelShoppingcart": "dev-master"
}
Then run composer update
(EDIT):
Instead of what I had before, use something like this:
{
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/fraterblack/LaravelShoppingcart"
}
],
"require": {
"gloudemans/shoppingcart": "dev-master"
}
}
It didn't work because "frater" didn't update the composer.json file in their repo so use "gloudemans/shoppingcart": "dev-master"
in "require" instead of "fraterblack/LaravelShoppingcart": "dev-master"
And instead of composer update
just do composer install
edited yesterday
answered 2 days ago
chinloyal
38615
38615
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
|
show 6 more comments
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
may i know composer.json file previously dont have repositories, is that just add on for this? and require part are using '"gloudemans/shoppingcart": "^2.5",' does it need to remove it ? or just add on "fraterblack/LaravelShoppingcart": "dev-master" ?
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
I tried your method, it say typo in the package name.
– lun7code
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
yes remove '"gloudemans/shoppingcart": "^2.5",' and add '"fraterblack/LaravelShoppingcart": "dev-master",' @lun7code
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
If there are no repos in your composer json then just a that repo that I mentioned anywhere in the composer.json
– chinloyal
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
thanks for reply but it still have this issue - The requested package fraterblack/laravelshoppingcart could not be found in any version, there may be a typo in the package name.
– lun7code
2 days ago
|
show 6 more comments
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53350368%2flaravel-shoppingcart-installation-for-the-pull-request%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
So you're trying to get the new update of Crinsane/LaravelShoppingcart?
– chinloyal
2 days ago
the 1st image doesn't have the feature, but 2nd have the feature I need, perhaps is that any method to copy or modify it?
– lun7code
2 days ago