<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PHP - Getting transaction details? (revised) in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51923#M27233</link>
    <description>&lt;P&gt;Fixed it. Turns out it was a broken dependency in composer.json.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Aug 2015 16:52:31 GMT</pubDate>
    <dc:creator>truthsofwolf</dc:creator>
    <dc:date>2015-08-27T16:52:31Z</dc:date>
    <item>
      <title>PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51909#M27221</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Apologies for repetition from my last post; I was not able to edit it and I was var_dumping the wrong variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am trying to get transaction details using the PHP SDK. So far, it will get the transaction correctly (I checked in the logs and found that A.Net responded with the correct transaction information), but using var_dump() on the $response variable yields the following result:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;object(net\authorize\api\contract\v1\GetTransactionDetailsResponse)#280 (4) {
  ["transaction":"net\authorize\api\contract\v1\GetTransactionDetailsResponse":private]=&amp;gt;
  NULL
  ["refId":"net\authorize\api\contract\v1\ANetApiResponseType":private]=&amp;gt;
  NULL
  ["messages":"net\authorize\api\contract\v1\ANetApiResponseType":private]=&amp;gt;
  NULL
  ["sessionToken":"net\authorize\api\contract\v1\ANetApiResponseType":private]=&amp;gt;
  NULL
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moreover, when calling getTransaction() on $response, it returns null. So does getMessages().&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code -- how can I get the transaction details&amp;nbsp;(i.e., accessing properties like getAuthAmount(), getTransId(), etc)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        $request = new AnetAPI\GetTransactionDetailsRequest();
        $request-&amp;gt;setMerchantAuthentication($this-&amp;gt;getAuthnetCreds());
        $request-&amp;gt;setTransId('7465634525');

        $controller = new AnetController\GetTransactionDetailsController($request);
        $response = $controller-&amp;gt;executeWithApiResponse( \net\authorize\api\constants\ANetEnvironment::PRODUCTION);

        var_dump($response);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 22:46:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51909#M27221</guid>
      <dc:creator>truthsofwolf</dc:creator>
      <dc:date>2015-08-26T22:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51914#M27226</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We're currently working on the full bank of new sample code here's the sample for gettransactiondetails in PHP: &amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-php/blob/master/Reporting/get-transaction-details.php" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-php/blob/master/Reporting/get-transaction-details.php&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2015 08:18:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51914#M27226</guid>
      <dc:creator>brianmc</dc:creator>
      <dc:date>2015-08-27T08:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51921#M27232</link>
      <description>&lt;P&gt;Hey Brian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I implemented the sample code but it's almost identical to what I'm trying above except it makes calls to error methods. Since&amp;nbsp;getMessages() is null, I get the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="exception_title"&gt;FatalErrorException in OrderController.php line 87:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="exception_message"&gt;Call to a member function getResultCode() on null&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="exception_message"&gt;I know the transaction is being retrieved successfully because it logs the correct XML response in the phplog file. This is the revised code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$request = new AnetAPI\GetTransactionDetailsRequest();
        $request-&amp;gt;setMerchantAuthentication($this-&amp;gt;getAuthnetCreds());
        $request-&amp;gt;setTransId('2239019257');

        $controller = new AnetController\GetTransactionDetailsController($request);
        $response = $controller-&amp;gt;executeWithApiResponse( \net\authorize\api\constants\ANetEnvironment::SANDBOX);
        
        if (($response != null) &amp;amp;&amp;amp; ($response-&amp;gt;getMessages()-&amp;gt;getResultCode() == "Ok"))
        {
            echo "SUCCESS: Transaction Status:" . $response-&amp;gt;getTransaction()-&amp;gt;getTransactionStatus() . "\n";
            echo "                Auth Amount:" . $response-&amp;gt;getTransaction()-&amp;gt;getAuthAmount() . "\n";
            echo "                   Trans ID:" . $response-&amp;gt;getTransaction()-&amp;gt;getTransId() . "\n";
        }
        else
        {
            echo "ERROR :  Invalid response\n";
            echo "Response : " . $response-&amp;gt;getMessages()-&amp;gt;getMessage()[0]-&amp;gt;getCode() . "  " .$response-&amp;gt;getMessages()-&amp;gt;getMessage()[0]-&amp;gt;getText() . "\n";
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2015 16:04:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51921#M27232</guid>
      <dc:creator>truthsofwolf</dc:creator>
      <dc:date>2015-08-27T16:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51923#M27233</link>
      <description>&lt;P&gt;Fixed it. Turns out it was a broken dependency in composer.json.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2015 16:52:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/51923#M27233</guid>
      <dc:creator>truthsofwolf</dc:creator>
      <dc:date>2015-08-27T16:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53237#M28369</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have downloaded the latest SDK from github and i am getting the same issue. I have used the sample code provided at&amp;nbsp;&lt;A href="http://developer.authorize.net/api/reference/index.html#customer-profiles" target="_blank"&gt;http://developer.authorize.net/api/reference/index.html#customer-profiles&lt;/A&gt; with my sandbox credentials.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will be great If i can get some help from you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 07:47:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53237#M28369</guid>
      <dc:creator>davinder</dc:creator>
      <dc:date>2015-12-07T07:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53241#M28373</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you using &amp;nbsp;1.8.6.2 of the PHP SDK? &amp;nbsp; I have just run the sample code from&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-php/blob/master/TransactionReporting/get-transaction-details.php" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-php/blob/master/TransactionReporting/get-transaction-details.php&lt;/A&gt; successfully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also I made sure to do a "composer update" to make sure I had the latest SDK and all the latest dependencies correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let us know how that goes,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 18:22:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53241#M28373</guid>
      <dc:creator>brianmc</dc:creator>
      <dc:date>2015-12-07T18:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53251#M28383</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion. Earlier i had taken the SDK from master, but now i have downloaded version&amp;nbsp; 1.8.6.2 and i am getting same result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should i get the latest version of other required libraries like jms, xsd2php, doctrine, Symfony, phpoption, parser-lib etc, as of now I am using it from master.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 07:05:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53251#M28383</guid>
      <dc:creator>davinder</dc:creator>
      <dc:date>2015-12-08T07:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53254#M28386</link>
      <description>&lt;P&gt;Can you paste in exactly what output you get when you run &amp;gt;php TransactionReporting/get-transaction-details.php from the command line? &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 16:06:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53254#M28386</guid>
      <dc:creator>brianmc</dc:creator>
      <dc:date>2015-12-08T16:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53400#M28520</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am facing the same issue. Using the latest SDK. Using it in YII-2 freamwork. This is the response I am getting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;net\authorize\api\contract\v1\ARBCreateSubscriptionResponse Object
(
    [subscriptionId:net\authorize\api\contract\v1\ARBCreateSubscriptionResponse:private] =&amp;gt; 
    [refId:net\authorize\api\contract\v1\ANetApiResponseType:private] =&amp;gt; 
    [messages:net\authorize\api\contract\v1\ANetApiResponseType:private] =&amp;gt; 
    [sessionToken:net\authorize\api\contract\v1\ANetApiResponseType:private] =&amp;gt; 
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; When I tried to debug the function I found the XML is coming out properly. Below is the xml response&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&amp;lt;ARBCreateSubscriptionResponse xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance&amp;quot;" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instance"&lt;/A&gt; xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema&amp;quot;" target="_blank"&gt;http://www.w3.org/2001/XMLSchema"&lt;/A&gt; xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&amp;lt;refId&amp;gt;ref1450967088&amp;lt;/refId&amp;gt;&amp;lt;messages&amp;gt;&amp;lt;resultCode&amp;gt;Ok&amp;lt;/resultCode&amp;gt;&amp;lt;message&amp;gt;&amp;lt;code&amp;gt;I00001&amp;lt;/code&amp;gt;&amp;lt;text&amp;gt;Successful.&amp;lt;/text&amp;gt;&amp;lt;/message&amp;gt;&amp;lt;/messages&amp;gt;&amp;lt;subscriptionId&amp;gt;3043388&amp;lt;/subscriptionId&amp;gt;&amp;lt;/ARBCreateSubscriptionResponse&amp;gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the code&amp;nbsp;$this-&amp;gt;apiResponse = $this-&amp;gt;serializer-&amp;gt;deserialize( $xmlResponse, $this-&amp;gt;apiResponseType , 'xml'); is not converting the xml into expected object.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much in advance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2015 14:53:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/53400#M28520</guid>
      <dc:creator>dbweb123</dc:creator>
      <dc:date>2015-12-24T14:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54284#M29290</link>
      <description>&lt;P&gt;I&amp;nbsp;have this same error.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/18814"&gt;@truthsofwolf﻿&lt;/a&gt;&amp;nbsp;what dependency was broken?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19375"&gt;@davinder﻿&lt;/a&gt;&amp;nbsp; how did you fix yours?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2016 08:13:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54284#M29290</guid>
      <dc:creator>Dee_</dc:creator>
      <dc:date>2016-04-09T08:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54286#M29292</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Earlier I downloaded all the libraries manually, it was creating customer profiles at authorize.net sandbox account but was not giving any response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that I installed composer from&amp;nbsp;&lt;A href="https://getcomposer.org/download/" target="_blank"&gt;https://getcomposer.org/download/&lt;/A&gt; (as i am using windows platform) and downloaded the latest SDK using composer and it worked fine for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to use the below code provided at &lt;A href="https://github.com/AuthorizeNet/sdk-php." target="_blank"&gt;https://github.com/AuthorizeNet/sdk-php.&lt;/A&gt;&lt;BR /&gt;Add this code to composer.json file (in a directory where you want to install SDK) and install it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;{
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;require&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: {
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;php&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&amp;gt;=5.2.0&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;,
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;ext-curl&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;*&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;,
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;authorizenet/authorizenet&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;1.8.8&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;,
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;jms/serializer&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;xsd2php-dev as 0.18.0&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;
},
&lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;require-dev&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: {
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;goetas/xsd2php&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;2.*@dev&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;,
  &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;goetas/xsd-reader&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;2.*@dev&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;
},
&lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;repositories&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: [{
    &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;type&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;vcs&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;,
    &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;url&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;https://github.com/goetas/serializer.git&lt;SPAN class="pl-pds"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;
    }]

}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 06:37:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54286#M29292</guid>
      <dc:creator>davinder</dc:creator>
      <dc:date>2016-04-11T06:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: PHP - Getting transaction details? (revised)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54292#M29298</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19375"&gt;@davinder﻿&lt;/a&gt;&amp;nbsp;Thank you very much.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I was using the manual approach too because i was unfamiliar with composer.&lt;BR /&gt;&lt;BR /&gt;But when I decided to take composer on, all was sorted.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 15:42:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PHP-Getting-transaction-details-revised/m-p/54292#M29298</guid>
      <dc:creator>Dee_</dc:creator>
      <dc:date>2016-04-11T15:42:59Z</dc:date>
    </item>
  </channel>
</rss>

