PHRETS icon indicating copy to clipboard operation
PHRETS copied to clipboard

PHP client library for interacting with a RETS server to pull real estate listings, photos and other data made available from an MLS system

Results 107 PHRETS issues
Sort by recently updated
recently updated
newest added

I have been using this the RETS API and now that it has deprecated multiple web pages are down. On one site all databases are populating correctly but I continue...

The default parameter makes it impossible to mock the object for unit testing. This parameter is not needed since recent version of PHP add it automatically. See contao/contao#3402 for more...

Would it be possible to update the code to make it PHP 8.x compatible? I have the following deprecated error: some examples: Deprecated: Return type of PHRETS\Models\Search\Results::offsetExists($offset) should either be...

Hello, my query look as `$results = $this->rets->Search('Property', 'RD_1', "*", ['Limit' => null, 'Select' => 'L_ListingID,L_UpdateDate']);` but me need select only active listings, I try this query `$results = $this->rets->Search('Property',...

Today I decided to give phpdocs a try with PHRETS. I added `"phpdocumentor/phpdocumentor": "2.*"` to composer.json I then ran `composer install ` and then ran this command: `C:\code\PHRETS\vendor\bin\phpdoc -d C:/code/PHRETS...

I obviously have an old version on phrets on my servers. I tried just install with composer per instructions but it didn't seem to update it. I'm getting error when...

What version do I need for the guzzlehttp/phs7 ? With guzzlehttp/[email protected] I get the following error Class 'GuzzleHttp\Psr7\Message' not found

I am using this library to fetch CREA property data. Now mt client want sold property data like : https://news2me.crea.ca/2019/april-2019/sold-data-has-arrived-on-realtor-ca/ Does anyone get sold data in CREA? If yes then...

I just finished the install on bluehost and I am receiving the following error. Can anyone help with this issue? PHP Fatal error: Uncaught GuzzleHttp\Exception\ConnectException: cURL error 6: Could not...

Hello, I'm attempting to pull images for a given ListingKey. ``` $object = $rets->getObject( 'Property', 'LargePhoto', $listingKey, '*', 1 ); ``` It returns an array with a single PHRETS\Models\BaseObject object,...