Merge branch 'master' into 'dev_production'
Master
See merge request !7
Showing
Bayanlogs.txt
0 → 100644
| [1] Merchant ID : 201901291000002 | ||
| [2] Merchant Key : +Hu4bL6iVk943JmFAvGtWEYMODFry4fad2I+iM0X2m0= | ||
| [3] Collaborator ID : BAYANPAY | ||
| [4] Bayan URL : https://staging.bayanpay.sa/direcpay/secure/PaymentTxnServlet | ||
| [5] Block Existence Indicator : 1110000 | ||
| [6] DataBlock1 : TransactionDataBlock1 : 11111111|1552564762|100.00|http://localhost/timeOut/Api/paymentGateway|http://localhost/timeOut/Api/paymentGateway|INTERNET|CC|01|SAR | ||
| [7] DataBlock2 : billingDataBlock : 1111111111000|Soloman|Vandy|123,ParkStreet|Park Street|Riyadh|Riyadh|400081|IN|[email protected]|9820998209 | ||
| [8] DataBlock3 : shippingDataBlock : 111111110001|Soloman|Vandy|123ParkStreet|parkstreet|Riyadh|Riyadh|400081|IN|9820998209 | ||
| [9] DataBlock4 : paymentDataBlock : NULL | ||
| [10] DataBlock5 : merchantDataBlock : NULL | ||
| [11] DataBlock6 : otherDataBlock : NULL | ||
| [12] DataBlock7 : DCCDataBlock : NULL | ||
| [13] beforeEncryptionString : 1110000||11111111|1552564762|100.00|http://localhost/timeOut/Api/paymentGateway|http://localhost/timeOut/Api/paymentGateway|INTERNET|CC|01|SAR||1111111111000|Soloman|Vandy|123,ParkStreet|Park Street|Riyadh|Riyadh|400081|IN|[email protected]|9820998209||111111110001|Soloman|Vandy|123ParkStreet|parkstreet|Riyadh|Riyadh|400081|IN|9820998209 | ||
| [14] EncryptedString : RKeCiPHQnrq4Ih8pVYOhUNd0KfqxD2Qby/wkUPbEvj23Xft2HvphIethb29a7Myq8E5b0uHFoKs9UpMiz9/j9ntt08QUmxUUx6796JKGexbz3qX7HwMuZaG31+FgM6BL1NqoybToj95/b2VpJ+PiznhjDPKtRHw1ghUTYRUdmM6z8dhuPGjfgKHvD93wH7p3SnktHyQVwa77nPyBT+3xVSARLWSHMzJn128/EaKVn37Hw9ml6NBR//D2fZhopsnvcdOWVLS9EOGffPbaSX3oijDjxaiW1BzrfC9opGdzXY9Vih9sohxhgqHIWvNakCk5Ctqav7hC23iZ5Aj4PCaILTpDUfQsHpF4RaP4HtC+P94DYFWPuScMYy+yeEjWCuDWNj1pcJBUwFqmN4ZHlafClfMm6vLfJOCspMq+8MShA0T/NvYd9fNYPg8C5Kl3HSTEF7cbGU7qNFT/vrlNlHkYNw== | ||
| [15] BayanPostData : 201901291000002||BAYANPAY||RKeCiPHQnrq4Ih8pVYOhUNd0KfqxD2Qby/wkUPbEvj23Xft2HvphIethb29a7Myq8E5b0uHFoKs9UpMiz9/j9ntt08QUmxUUx6796JKGexbz3qX7HwMuZaG31+FgM6BL1NqoybToj95/b2VpJ+PiznhjDPKtRHw1ghUTYRUdmM6z8dhuPGjfgKHvD93wH7p3SnktHyQVwa77nPyBT+3xVSARLWSHMzJn128/EaKVn37Hw9ml6NBR//D2fZhopsnvcdOWVLS9EOGffPbaSX3oijDjxaiW1BzrfC9opGdzXY9Vih9sohxhgqHIWvNakCk5Ctqav7hC23iZ5Aj4PCaILTpDUfQsHpF4RaP4HtC+P94DYFWPuScMYy+yeEjWCuDWNj1pcJBUwFqmN4ZHlafClfMm6vLfJOCspMq+8MShA0T/NvYd9fNYPg8C5Kl3HSTEF7cbGU7qNFT/vrlNlHkYNw== | ||
| \ No newline at end of file |
| ... | ... | @@ -299,6 +299,139 @@ class Api extends CI_Controller { |
| } | ||
| public function paymentGateway(){ | ||
| BayanPayPayment(); | ||
| $networkOnlineArray = | ||
| array('Network_Online_setting' => | ||
| array( | ||
| 'merchantKey' => "+Hu4bL6iVk943JmFAvGtWEYMODFry4fad2I+iM0X2m0=", | ||
| 'merchantId' => '201901291000002', | ||
| 'collaboratorId' => 'NI', | ||
| 'iv' => '0123456789abcdef', | ||
| 'url' => false | ||
| ), | ||
| 'Block_Existence_Indicator' => array( | ||
| 'transactionDataBlock' => true, | ||
| 'billingDataBlock' => true, | ||
| 'shippingDataBlock' => true, | ||
| 'paymentDataBlock' => false, | ||
| 'merchantDataBlock' => false, | ||
| 'otherDataBlock' => false, | ||
| 'DCCDataBlock' => false | ||
| ), | ||
| 'Field_Existence_Indicator_Transaction' => array( | ||
| 'merchantOrderNumber' => time(), | ||
| 'amount' => '100.00', | ||
| 'successUrl' => $this->baseurl(), | ||
| 'failureUrl' => $this->baseurl(), | ||
| 'transactionMode' => 'INTERNET', | ||
| 'payModeType' => 'CC', | ||
| 'transactionType' => '01', | ||
| 'currency' => 'AED' | ||
| ), | ||
| 'Field_Existence_Indicator_Billing' => array( | ||
| 'billToFirstName' => 'Soloman', | ||
| 'billToLastName' => 'Vandy', | ||
| 'billToStreet1' => '123,ParkStreet', | ||
| 'billToStreet2' => 'Park Street', | ||
| 'billToCity' => 'Mumbai', | ||
| 'billToState' => 'Maharashtra', | ||
| 'billtoPostalCode' => '400081', | ||
| 'billToCountry' => 'IN', | ||
| 'billToEmail' => '[email protected]', | ||
| 'billToMobileNumber' => '9820998209', | ||
| 'billToPhoneNumber1' => '', | ||
| 'billToPhoneNumber2' => '', | ||
| 'billToPhoneNumber3' => '' | ||
| ), | ||
| 'Field_Existence_Indicator_Shipping' => array( | ||
| 'shipToFirstName' => 'Soloman', | ||
| 'shipToLastName' => 'Vandy', | ||
| 'shipToStreet1' => '123ParkStreet', | ||
| 'shipToStreet2' => 'parkstreet', | ||
| 'shipToCity' => 'Mumbai', | ||
| 'shipToState' => 'Maharashtra', | ||
| 'shipToPostalCode' => '400081', | ||
| 'shipToCountry' => 'IN', | ||
| 'shipToPhoneNumber1' => '', | ||
| 'shipToPhoneNumber2' => '', | ||
| 'shipToPhoneNumber3' => '', | ||
| 'shipToMobileNumber' => '9820998209' | ||
| ), | ||
| 'Field_Existence_Indicator_Payment' => array( | ||
| 'cardNumber' => '4111111111111111', // 1. Card Number | ||
| 'expMonth' => '08', // 2. Expiry Month | ||
| 'expYear' => '2020', // 3. Expiry Year | ||
| 'CVV' => '123', // 4. CVV | ||
| 'cardHolderName' => 'Soloman', // 5. Card Holder Name | ||
| 'cardType' => 'Visa', // 6. Card Type | ||
| 'custMobileNumber'=> '9820998209', // 7. Customer Mobile Number | ||
| 'paymentID' => '123456', // 8. Payment ID | ||
| 'OTP' => '123456', // 9. OTP field | ||
| 'gatewayID' => '1026', // 10.Gateway ID | ||
| 'cardToken' => '1202' // 11.Card Token | ||
| ), | ||
| 'Field_Existence_Indicator_Merchant' => | ||
| array( | ||
| 'UDF1' => '115.121.181.112', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF2' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF3' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF4' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF5' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF6' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF7' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF8' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF9' => 'abc', // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| 'UDF10' => 'abc' // This is a ‘user-defined field’ that can be used to send additional information about the transaction. | ||
| ), | ||
| 'Field_Existence_Indicator_OtherData' => | ||
| array( | ||
| 'custID' => '12345', | ||
| 'transactionSource' => 'IVR', | ||
| 'productInfo' => 'Book', | ||
| 'isUserLoggedIn' => 'Y', | ||
| 'itemTotal' => '500.00, 1000.00', | ||
| 'itemCategory' => 'CD, Book', | ||
| 'ignoreValidationResult' => 'FALSE' | ||
| ), | ||
| 'Field_Existence_Indicator_DCC' => | ||
| array( | ||
| 'DCCReferenceNumber' => '09898787', // DCC Reference Number | ||
| 'foreignAmount' => '240.00', // Foreign Amount | ||
| 'ForeignCurrency' => 'USD' // Foreign Currency | ||
| ) | ||
| ); | ||
| $networkOnlineObject = new NetworkonlieBitmapPaymentIntegration($networkOnlineArray); | ||
| if(isset($_REQUEST['responseParameter']) && $_REQUEST['responseParameter'] != ''){ | ||
| $response = $networkOnlineObject->decryptData($_REQUEST['responseParameter'],$networkOnlineObject->merchantKey,$networkOnlineObject->iv); | ||
| $networkOnlineObject->AddLog('Network Online Response : '.print_r($response, TRUE),'16'); | ||
| } | ||
| $requestParameter = $networkOnlineObject->NeoPostData; | ||
| // if($networkOnlineObject->url) | ||
| // $requestUrl = 'https://www.timesofmoney.com/direcpay/secure/PaymentTxnServlet'; | ||
| // else | ||
| $requestUrl = 'https://staging.bayanpay.sa/direcpay/secure/PaymentTxnServlet'; | ||
| echo '<form action="'.$requestUrl.'" method="post" name="network_online_payment" | ||
| id="network_online_payment"> | ||
| <input type="hidden" name="requestParameter" value='.$requestParameter.'> | ||
| <input type="submit" value="Submit"> | ||
| </form>'; | ||
| } | ||
| function baseurl(){ | ||
| if(isset($_SERVER['HTTPS'])) | ||
| $protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http"; | ||
| else | ||
| $protocol = 'http'; | ||
| return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; | ||
| } | ||
| ... | ... |
application/controllers/CMS.php
0 → 100644
This diff is collapsed.
Click to expand it.
application/helpers/qr_code/autoload.php
0 → 100644
| { | ||
| "name": "bacon/bacon-qr-code", | ||
| "description": "BaconQrCode is a QR code generator for PHP.", | ||
| "license" : "BSD-2-Clause", | ||
| "homepage": "https://github.com/Bacon/BaconQrCode", | ||
| "require": { | ||
| "php": "^5.4|^7.0", | ||
| "ext-iconv": "*" | ||
| }, | ||
| "suggest": { | ||
| "ext-gd": "to generate QR code images" | ||
| }, | ||
| "authors": [ | ||
| { | ||
| "name": "Ben Scholzen 'DASPRiD'", | ||
| "email": "[email protected]", | ||
| "homepage": "http://www.dasprids.de", | ||
| "role": "Developer" | ||
| } | ||
| ], | ||
| "autoload": { | ||
| "psr-0": { | ||
| "BaconQrCode": "src/" | ||
| } | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^4.8" | ||
| } | ||
| } |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
application/helpers/qr_code/composer/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
application/models/Cms_model.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
application/views/CMS/cms_management.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
application/views/payment/paymentGateway.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/155198272834057.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155198325710806.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155198367294335.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155198442755827.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155201869666702.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155205608765242.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155205608995897.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/155205843357036.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/qrcode/qr-code_1552632693.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/qrcode/qr-code_1552632732.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/117384125.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1523012036_hj.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549274804_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549274911_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549281147_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549283309_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549283405_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549283430_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549451411_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549456480_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1549456787_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550139949_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550152258_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550152924_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550211668_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550213061_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550213061_giphy.png
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550231548_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550645245_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1550658421_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1551262089_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1551345141_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552049223_m1.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552049246_m2.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552049271_m3.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552049291_m4.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552049320_m5.png
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552069245_tyui.png
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552374741_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552374752_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552374838_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375021_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375245_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375272_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375272_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375283_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375283_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375325_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375325_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375374_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375374_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375531_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375531_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375547_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375547_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375560_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375560_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375574_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375574_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375582_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375582_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552375591_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380493_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380632_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380644_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380661_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380706_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380723_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380762_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380771_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552380802_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381265_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381349_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381387_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381421_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381482_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552381597_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552382451_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552383365_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552383589_giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552383721_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552384250_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552384991_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552385010_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552385027_orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552385033_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552385090_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552385090_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552971921_car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552972020_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/1552972046_car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/190121131326.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/234858854male.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/Audi-r8.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/Audi-r81.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/Audi-r82.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/[email protected]
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/[email protected]
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_event.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_event1.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_event_list.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image1.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image11.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image12.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image13.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image2.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image21.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image22.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image23.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image3.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/asset_image4.png
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car11.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car12.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car13.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car14.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/car2.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy1.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy10.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy11.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy12.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy13.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy14.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy15.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy16.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy17.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy18.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy19.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy2.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy3.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy4.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy5.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy6.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy7.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy8.gif
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/giphy9.gif
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
assets/uploads/services/orig.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/orig1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/sniper.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
assets/uploads/services/sniper1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
composer.json
0 → 100644
This diff is collapsed.
Click to expand it.
composer.lock
0 → 100644
This diff is collapsed.
Click to expand it.
neologs.txt
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/autoload.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/ClassLoader.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_classmap.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_namespaces.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_psr4.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_real.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_static.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/composer/installed.json
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/symfony/options-resolver/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/symfony/options-resolver/CHANGELOG.md
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/symfony/options-resolver/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/symfony/options-resolver/Options.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/symfony/options-resolver/README.md
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment