1

https://github.com/troydavisson/PHRETSこのライブラリを symfony プロジェクトに含めるにはどうすればよいですか?

これは私のcomposer.jsonです:

{
    "name": "marysalcedo/reactive-pandora",
    "license": "proprietary",
    "type": "project",
    "autoload": {
        "psr-0": {
            "": "src/",
            "SymfonyStandard": "app/"
        },
        "files": []
    },
    "require": {
        "php": ">=5.3.3",
        "symfony/symfony": "2.6.*",
        "doctrine/orm": "~2.2,>=2.2.3,<2.5",
        "doctrine/dbal": "<2.5",
        "twig/extensions": "~1.0",
        "symfony/assetic-bundle": "~2.3",
        "symfony/swiftmailer-bundle": "~2.3",
        "symfony/monolog-bundle": "~2.4",
        "sensio/distribution-bundle": "~3.0,>=3.0.12",
        "sensio/framework-extra-bundle": "~3.0,>=3.0.2",
        "incenteev/composer-parameter-handler": "~2.0",
        "doctrine/mongodb-odm": "1.0.*@dev",
        "doctrine/mongodb-odm-bundle": "3.0.*@dev",
        "maciejczyzewski/bottomline": "*",
        "doctrine/doctrine-fixtures-bundle": "2.2.*",
        "troydavisson/phrets": "2.*"
    },
    "minimum-stability": "dev",
    "require-dev": {
        "sensio/generator-bundle": "~2.3"
    },
    "scripts": {
        "post-root-package-install": [
            "SymfonyStandard\\Composer::hookRootPackageInstall"
        ],
        "post-install-cmd": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
        ],
        "post-update-cmd": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
        ]
    },
    "config": {
        "bin-dir": "bin"
    },
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web",
        "symfony-assets-install": "relative",
        "incenteev-parameters": {
            "file": "app/config/parameters.yml"
        }
    }
}

オブジェクト \PHRETS\Configuration を使用しようとするたびに、エラーが発生します。

new \PHRETS\Configuration();

これは私が返すエラーです:

[Symfony\Component\Debug\Exception\ClassNotFoundException]                   
  Attempted to load class "Configuration" from namespace "PHRETS".             
  Did you forget a "use" statement for e.g. 

なぜ含まれていないのでしょうか?

4

1 に答える 1

1

実際にパッケージをインストールしたと確信しています?

1)カスタムコンポーザーベースのプロジェクトを使用し、そのクラスの新しいインスタンスを作成しようとしましたが、うまくいきました。以下に出力します。

Symfony22) 次に、 ( v2.6) とパッケージの新しいコピーをインストールしました。インスタンスを作成しようとしましたが、同様に機能しました。

これを試して:

php composer.phar update

そして、コントローラーで:

$c = new \PHRETS\Configuration();
var_dump($c);

私のセットアップでの出力:

object(PHRETS\Configuration)[570]
  protected 'username' => null
  protected 'password' => null
  protected 'login_url' => null
  protected 'user_agent' => string 'PHRETS/2.0' (length=10)
  protected 'user_agent_password' => null
  protected 'rets_version' => 
    object(PHRETS\Versions\RETSVersion)[571]
      protected 'number' => string '1.5' (length=3)
      protected 'valid_versions' => 
        array (size=5)
          0 => string '1.5' (length=3)
          1 => string '1.7' (length=3)
          2 => string '1.7.1' (length=5)
          3 => string '1.7.2' (length=5)
          4 => string '1.8' (length=3)
  protected 'http_authentication' => string 'digest' (length=6)
  protected 'strategy' => null
  protected 'options' => 
    array (size=0)
      empty

サイドノート

useステートメントに関する混乱を解消するためだけに。

  • useクラスの を指定する場合は、置く必要はありませんFQN
  • use先頭のバックスラッシュを省略すると、PHP は名前空間に一致するステートメント内のエイリアスを見つけようとします。見つからない場合は、現在のクラスの名前空間が想定されます。よく知られているDoctrineマッピングの例を見てみましょう:

    use `Doctrine\ORM\Mapping` as ORM
    ....
    @ORM\Column() // This resolves to `Doctrine\ORM\Mapping\Column` `FQN`
    
  • クラス名のみを使用する場合 (例Configuration)useステートメントは必須です。

于 2015-05-06T22:53:17.397 に答える