>  기사  >  PHP 프레임워크  >  ThinkPHP5.1 버전에서 Composer Vendor 확장 패키지 도입 문제 해결

ThinkPHP5.1 버전에서 Composer Vendor 확장 패키지 도입 문제 해결

藏色散人
藏色散人앞으로
2021-05-28 15:16:153251검색

다음 thinkphp 프레임워크 튜토리얼 칼럼에서는 ThinkPHP5.1 버전에서 Composer Vendor 확장 패키지 도입 문제를 해결하는 방법을 소개하겠습니다. 필요한 친구들에게 도움이 되길 바랍니다!

버전 설명
이전 버전: ThinkPHP5.0

새 버전: ThinkPHP5.1

문제: Loader::import 메서드 및 가져오기 및 공급업체 도우미 기능이 모두 사용됩니다. 네임스페이스 및 자동 로딩 메커니즘으로 인해 가져온 클래스 라이브러리를 찾을 수 없다는 오류가 발생했습니다

해결책: "모두 네임스페이스 및 자동 로딩 메커니즘을 사용"하기 때문에 작곡가/installed.json이 수정되었습니다(아래 댓글의 텍스트 설명)

ThinkPHP5.1 버전에서 Composer Vendor 확장 패키지 도입 문제 해결

    {
        "name": "curl/curl",
        "version": "2.3.0",
        "version_normalized": "2.3.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/php-mod/curl.git",
            "reference": "3ad560b1fc1bbdf5c7681356ab953fb961f255e5"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/php-mod/curl/zipball/3ad560b1fc1bbdf5c7681356ab953fb961f255e5",
            "reference": "3ad560b1fc1bbdf5c7681356ab953fb961f255e5",
            "shasum": ""
        },
        "require": {
            "ext-curl": "*",
            "php": "^5.6 | ^7.0"
        },
        "require-dev": {
            "phpunit/phpunit": "^5.7",
            "squizlabs/php_codesniffer": "~2.1"
        },
        "time": "2020-03-19T20:07:26+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "Curl": "src/"
            },
            //在此处添加 files 字段,把类库文件的相对路径填入
            "files":[
                "vendor/curl/curl/src/Curl/Curl.php"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "php-curl-class",
                "homepage": "https://github.com/php-curl-class"
            },
            {
                "name": "Hassan Amouhzi",
                "email": "hassan@anezi.net",
                "homepage": "http://hassan.amouhzi.com"
            },
            {
                "name": "user52",
                "homepage": "https://github.com/user52"
            }
        ],
        "description": "cURL class for PHP",
        "homepage": "https://github.com/php-mod/curl",
        "keywords": [
            "curl",
            "dot"
        ]
    }

관련 추천: 최신 10개 thinkphp 비디오 튜토리얼

위 내용은 ThinkPHP5.1 버전에서 Composer Vendor 확장 패키지 도입 문제 해결의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 segmentfault.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제