sminnee / silverstripe-staticsiteconnector

Connector plugin for the SilverStripe External Content module that uses web scraping to import content.
8 stars 12 forks source link

Link phpQuery via packagist (if it's available) #7

Open sminnee opened 11 years ago

sminnee commented 11 years ago

Once this is dealt with - https://github.com/TobiaszCudnik/phpquery/pull/8 - then we can remove thirdparty/phpquery and pull that in via packagist as well.

sminnee commented 11 years ago

Note that this is an alternative solution:

{
    "require": {
        "phpquery/phpquery": "dev-master"
    },
    "repositories": [
        {
            "type": "package",
            "package": {
                "name": "phpquery/phpquery",
                "version": "dev-master",
                "source": {
                    "url": "git://github.com/tunght13488/phpquery.git",
                    "type": "git",
                    "reference": "master"
                },
                "autoload": {
                    "files": ["phpQuery/phpQuery.php"]
                }
            }
        }
    ]
}