duangang2825 2015-04-29 18:29
浏览 56
已采纳

如果在存储库中设置,则Composer自动加载文件不起作用

i wrote the followings

"repositories": [{
  "type": "package",
  "package": {
    "name": "rysas/ffxiv-lodestone-php-api",
    "version": "dev-master",
    "source": {
      "url": "git://github.com/rysas/Final-Fantasy-XIV-Lodestone-PHP-API.git",
      "type": "git",
      "reference": "origin/master"
    },
    "autoload": {
      "files": [
        "vendor/rysas/ffxiv-lodestone-php-api/ffxiv-lodestone-api.php"
      ]
    }
  }
}]

After doing a composer update, my library isn't loaded, everything works fine if i do the following

"repositories": [{
  "type": "package",
  "package": {
    "name": "rysas/ffxiv-lodestone-php-api",
    "version": "dev-master",
    "source": {
      "url": "git://github.com/rysas/Final-Fantasy-XIV-Lodestone-PHP-API.git",
      "type": "git",
      "reference": "origin/master"
    }
  }
}],
"autoload": {
    "psr-4": {
    "App\\": "src"
  },
  "files": [
    "vendor/rysas/ffxiv-lodestone-php-api/ffxiv-lodestone-api.php"
  ]
}

Do i really need to declare the autoloader ouside of the declaration of my package ?

  • 写回答

1条回答 默认 最新

  • doulongsha5478 2015-04-29 19:51
    关注

    When you add package information as "type=package", you have to do that from the perspective of that package.

    And the autoloading rules say that autoloading must be defined relative from the PACKAGE ROOT. The package root is the directory that gets placed at "vendor/vendorname/packagename/", i.e. you must not add either the directory "vendor", "rysas" and "ffxiv-lodestone-php-api" to the autoload definition path.

    Additionally, you should not use the "files" autoloader if the code that needs to get autoloaded is in fact a PHP class. Use the classmap autoloader for that (you can point it at distinct files as well as directories). The difference: Classmap autoloading takes place only if the class is needed. Files autoloading isn't really automatic - the files is ALWAYS executed when you require "vendor/autoload.php".

    Files autoloading is meant to add global functions outside of classes because PHP cannot autoload them. The better solution for such code would be to put them into a class as a static function - this can be autoloaded. It should be seen as a workaround for old legacy code to make it usable with Composer.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择