What’s that?

Developer Zone is a special website dedicated to IT geeks. It contains everything that might be helpful when integrating with PayLane. Besides technical documentation, you’ll find there:
- plugins for the biggest e-commerce platforms (Magento, osCommerce, Zen Cart, OpenCart, Presta Shop) and to WordPress,
- business cases,
- payment transaction demo with both requests sent to PayLane and responses received from our payment systems,
- code samples including PHP, Java, Python, Ruby, C#,
- last but not least, you can see how to send transaction request via cURL.
read more
I have recently been working on one of our new projects, and I needed to have my own copy of our system with full functionality. The changes made by me would affect the whole system so my workmates couldn’t work on their features then.
Although every respectful development company uses version control systems, typically every change is made to main repository – then every developer can be up to date and they can work on the same project. But sometimes – as in my case – your changes are going too deep to work on the same repository. Here branching comes in. It is used globally in any version control system. It allows you to create branches that are (depends on system) independent copies of HEAD (or another branch) created from one particular commit in main repository.
read more