Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8263305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:03:16+00:00 2026-06-08T04:03:16+00:00

I know this question has already been asked, but it seems that autoloading process

  • 0

I know this question has already been asked, but it seems that autoloading process changed a little bit with composer.

I just want to add a class library to my silex project.

So I made this file:
vendor\lib\picture.php

<?php
namespace MyNamespace;

class Picture
{
    function testage()
    {
        echo 'hihaaa ça marche'; exit;
    }
}

in vendor/composer/autoload_namespaces.php, I added this line to the big array:

'MyNamespace' => $vendorDir . '/lib/',

And in the main file I added:

use MyNamespace\Picture as Picture;

and called it like that:

$app->register(new Picture());

which gives me this error:

Fatal error: Class 'MyNamespace\Picture' not found...

I just don’t know how to add a class that I can use from any controller, easily, without command line (I don’t use composer, I downloaded silex preconfigured), any idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T04:03:18+00:00Added an answer on June 8, 2026 at 4:03 am

    If you’re using composer you should not change the vendor directory. You should not add files into it, and you should not modify the composer-generated files.

    I recommend you put those classes into the src directory. @gunnx shows how you can configure autoloading in composer.json, so that it gets re-generated every time you run composer install.

    The file would be in src/MyNamespace/Picture.php. The autoload config in composer.json would be:

    {
        "autoload": {
            "psr-0": { "MyNamespace": "src/" }
        }
    }
    

    The actual solution is a combination of the two previous answers. But I think it’s important to get the details right ;-).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that this question has already been asked HERE but sadly none of
I know this question has been asked already but I would like to solve
I know this question has already been asked but I am in urgent need
First of all, I know this question has already been asked but the answer
I know this question has probably been asked already but I would really like
I know a similar question has already been asked, but that retrieves all the
I know this question has already been asked, but the solution doesn't work in
I know this question has already been asked a lot, but I don't get
I know this question has been asked before, but non of the solutions solve
I know this question has been asked a zillion times, but I still feel

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.