Laravel composer stops package download












0















So, I tried every solution there is online..



Composer clearcache and every other command..



Every command seems to work within project except commands that contains




composer require or composer update command




that I use to install needed packages.



IMAGE



It just stops without any error..



{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true


}










share|improve this question

























  • Run again with -v for verbosity?

    – Chad
    Nov 14 '18 at 18:13











  • Tried. It always stops on "Updating dependencies (including require-dev)"

    – Jhonny
    Nov 14 '18 at 18:16











  • stackoverflow.com/questions/32573924/…

    – Chad
    Nov 14 '18 at 18:18











  • It's disabled. Still doesn't work.

    – Jhonny
    Nov 14 '18 at 18:29











  • Check all of the answers for potential fixes.

    – Chad
    Nov 14 '18 at 18:40
















0















So, I tried every solution there is online..



Composer clearcache and every other command..



Every command seems to work within project except commands that contains




composer require or composer update command




that I use to install needed packages.



IMAGE



It just stops without any error..



{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true


}










share|improve this question

























  • Run again with -v for verbosity?

    – Chad
    Nov 14 '18 at 18:13











  • Tried. It always stops on "Updating dependencies (including require-dev)"

    – Jhonny
    Nov 14 '18 at 18:16











  • stackoverflow.com/questions/32573924/…

    – Chad
    Nov 14 '18 at 18:18











  • It's disabled. Still doesn't work.

    – Jhonny
    Nov 14 '18 at 18:29











  • Check all of the answers for potential fixes.

    – Chad
    Nov 14 '18 at 18:40














0












0








0








So, I tried every solution there is online..



Composer clearcache and every other command..



Every command seems to work within project except commands that contains




composer require or composer update command




that I use to install needed packages.



IMAGE



It just stops without any error..



{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true


}










share|improve this question
















So, I tried every solution there is online..



Composer clearcache and every other command..



Every command seems to work within project except commands that contains




composer require or composer update command




that I use to install needed packages.



IMAGE



It just stops without any error..



{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true


}







php laravel composer-php






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 18:36







Jhonny

















asked Nov 14 '18 at 18:07









JhonnyJhonny

11




11













  • Run again with -v for verbosity?

    – Chad
    Nov 14 '18 at 18:13











  • Tried. It always stops on "Updating dependencies (including require-dev)"

    – Jhonny
    Nov 14 '18 at 18:16











  • stackoverflow.com/questions/32573924/…

    – Chad
    Nov 14 '18 at 18:18











  • It's disabled. Still doesn't work.

    – Jhonny
    Nov 14 '18 at 18:29











  • Check all of the answers for potential fixes.

    – Chad
    Nov 14 '18 at 18:40



















  • Run again with -v for verbosity?

    – Chad
    Nov 14 '18 at 18:13











  • Tried. It always stops on "Updating dependencies (including require-dev)"

    – Jhonny
    Nov 14 '18 at 18:16











  • stackoverflow.com/questions/32573924/…

    – Chad
    Nov 14 '18 at 18:18











  • It's disabled. Still doesn't work.

    – Jhonny
    Nov 14 '18 at 18:29











  • Check all of the answers for potential fixes.

    – Chad
    Nov 14 '18 at 18:40

















Run again with -v for verbosity?

– Chad
Nov 14 '18 at 18:13





Run again with -v for verbosity?

– Chad
Nov 14 '18 at 18:13













Tried. It always stops on "Updating dependencies (including require-dev)"

– Jhonny
Nov 14 '18 at 18:16





Tried. It always stops on "Updating dependencies (including require-dev)"

– Jhonny
Nov 14 '18 at 18:16













stackoverflow.com/questions/32573924/…

– Chad
Nov 14 '18 at 18:18





stackoverflow.com/questions/32573924/…

– Chad
Nov 14 '18 at 18:18













It's disabled. Still doesn't work.

– Jhonny
Nov 14 '18 at 18:29





It's disabled. Still doesn't work.

– Jhonny
Nov 14 '18 at 18:29













Check all of the answers for potential fixes.

– Chad
Nov 14 '18 at 18:40





Check all of the answers for potential fixes.

– Chad
Nov 14 '18 at 18:40












1 Answer
1






active

oldest

votes


















0














What about trying:



composer create-project --prefer-dist laravel/laravel ads-site



then:



cd ads-site



followed by:



composer require kalnoy/nestedset



I was able to successfully run it in that order.






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306358%2flaravel-composer-stops-package-download%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    What about trying:



    composer create-project --prefer-dist laravel/laravel ads-site



    then:



    cd ads-site



    followed by:



    composer require kalnoy/nestedset



    I was able to successfully run it in that order.






    share|improve this answer






























      0














      What about trying:



      composer create-project --prefer-dist laravel/laravel ads-site



      then:



      cd ads-site



      followed by:



      composer require kalnoy/nestedset



      I was able to successfully run it in that order.






      share|improve this answer




























        0












        0








        0







        What about trying:



        composer create-project --prefer-dist laravel/laravel ads-site



        then:



        cd ads-site



        followed by:



        composer require kalnoy/nestedset



        I was able to successfully run it in that order.






        share|improve this answer















        What about trying:



        composer create-project --prefer-dist laravel/laravel ads-site



        then:



        cd ads-site



        followed by:



        composer require kalnoy/nestedset



        I was able to successfully run it in that order.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 14 '18 at 22:22

























        answered Nov 14 '18 at 22:09









        Justin SchwimmerJustin Schwimmer

        989




        989
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306358%2flaravel-composer-stops-package-download%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            Florida Star v. B. J. F.

            Error while running script in elastic search , gateway timeout

            Adding quotations to stringified JSON object values