Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Standards and Best Practices Creating Distributable OOP Packages Composer Metadata

Alex Efimov
Alex Efimov
26,899 Points

Namespace

Hello, do i need write namespace in composer.json->autoload and in file both?

1 Answer

Ahsan Parwez
Ahsan Parwez
3,139 Points

To create namespacing in your PHP project you can autoload files in composer.json like this:

//Suppose you have App folder which you need to autoload.
"autoload": {

       "psr-4": {

           "App\\": "app"

       }

   }

Now to initialize the subfolders of App like Controllers, Models you can write this in your PHP file:

namespace App\Controllers;

Don't forget to run this command

$ composer dump-autoload -o