Omar Khalid
Omar Khalid

Reputation: 81

How to change app folder name in laravel 5

I want to change main folder [app] to author name in laravel 5 how can I do that can I do that without change anything in autoloader or composer ?

Upvotes: 1

Views: 8048

Answers (1)

Sergio Guillen Mantilla
Sergio Guillen Mantilla

Reputation: 1468

You will have an entry on your composer.json file named "psr-4", inside change it to your new renamed directory.

 "autoload": {
    "classmap": [
        "database"
    ],
    "psr-4": {
        "App\\": "your_new_directory/"
    }
  },

Then in command line run:

$ composer dump-autoload

Or

$ php composer.phar dump-autoload

Upvotes: 3

Related Questions