我是Php和作曲家的新手,我想使用composer访问另一个模块的Php类,这是我的基本项目结构(两个模块常用和工作者) 的index.php
TestLocalRepository
--/Souce Files
--/common
--/vendor
--/canvass
--/test
--test.php
--/composer
--autoload.php
--composer.json
--/worker
--/vendor
--/composer
composer.json
temocaller.php
--index.php
公共/供应商/帆布/ test.php的
<?php
namespace test;
class test {
//put your code here
function __construct() {
echo "hello";
}
}
?>
公共/ composer.json
{
"name":"canvass/test",
"type":"package",
"version": "1.0.0"
}
工人/ composer.json
{
"autoload": {
"psr-4": {
"test":"../common/vendor/canvass"
}
}
}
工人/ tempcaller.php
<?php
require_once dirname(__FILE__) . '../vendor/autoload.php';
use test;
class tempcaller {
//put your code here
function __construct() {
echo "tempcaller";
$obj = new test();
}
}
$t = new tempcaller();
?>
我无法用psr-0或存储库做到这一点,是否有任何方法可以做到这一点?
答案 0 :(得分:2)
您在此处展示的是一个项目TestLocalRepository
,它由common
文件夹中的两个独立的Composer项目worker
和Source
组成,每个项目都有一个composer.json文件和他们自己的供应商文件夹。
我认为你的项目结构不是最优的。
从我的角度来看,您可以将这两个项目放在主项目的vendor文件夹中,而不是放在源文件夹中。我的建议是使用一个项目TestLocalRepository
,并将模块common
和worker
都包含在该项目的依赖项中(在composer.json
中)。
你会得到这样的结构:
TestLocalRepository
- composer.json
+- src
- index.php
+- vendor
- autoload.php
+- common
+- worker
- temocaller.php
现在:在composer update
上,将获取common和worker的依赖项并将其放入vendor文件夹,然后生成自动加载。
然后,在src/index.php
中,您只需添加require 'vendor/autoload.php';
和$t = new test/temocaller();
;
如果这不是您想要的,那么您仍然可以使用Composer Autoloader 并为其添加类的自定义位置。 在index.php中:首先需要自动加载器,然后将文件夹添加到自动加载类中,如下所示:
$loader = require 'vendor/autoload.php';
$loader->add('SomeWhere\\Test\\', __DIR__);
或者只是将路径添加到TestLocalRepository中的composer.json
。