GithubHelp home page GithubHelp logo

Comments (2)

jmikola avatar jmikola commented on July 19, 2024

I would double-check that Composer itself is up to date. The composer.json for this library includes the necessary configuration for the PSR-4 loaders, so there shouldn't be any issue there. This is the first report I've seen related to autoloading issues, and we've not changed that configuration in months.

Here's a shell session of me bootstrapping a new project locally:

$ cd /tmp; mkdir new; cd new

$ composer --version
Composer version 1.0-dev (546730dcf3da4d2689664116c0639655aa428b6b) 2016-01-19 17:34:29

$ composer require "mongodb/mongodb=^1.0.0"
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing mongodb/mongodb (1.0.0)
    Loading from cache

Writing lock file
Generating autoload files

$ cat composer.json 
{
    "require": {
        "mongodb/mongodb": "^1.0.0"
    }
}

$ cat vendor/composer/autoload_psr4.php 
<?php

// autoload_psr4.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    'MongoDB\\' => array($vendorDir . '/mongodb/mongodb/src'),
);

$ cat vendor/composer/autoload_files.php 
<?php

// autoload_files.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    '3a37ebac017bc098e9a86b35401e7a68' => $vendorDir . '/mongodb/mongodb/src/functions.php',
);

from mongo-php-library.

jmikola avatar jmikola commented on July 19, 2024

Closing this due to inactivity and relevance (the project's composer.json doesn't appear to be an issue, based on the bootstrap example above).

from mongo-php-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.