-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4000d8
commit 767e486
Showing
1 changed file
with
65 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,39 @@ | |
<img align="left" src="https://sylius.com/assets/badge-approved-by-sylius.png" width="85"> | ||
</p> | ||
|
||
At BitBag we do believe in open source. However, we are able to do it just because of our awesome clients, who are kind enough to share some parts of our work with the community. Therefore, if you feel like there is a possibility for us to work together, feel free to reach out. You will find out more about our professional services, technologies, and contact details at [https://bitbag.io/](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export). | ||
We want to impact many unique eCommerce projects and build our brand recognition worldwide, so we are heavily involved in creating open-source solutions, especially for Sylius. We have already created over 35 extensions, which have been downloaded almost 2 million times. | ||
|
||
Like what we do? Want to join us? Check out our job listings on our [career page](https://bitbag.io/career/?utm_source=github&utm_medium=referral&utm_campaign=career). Not familiar with Symfony & Sylius yet, but still want to start with us? Join our [academy](https://bitbag.io/pl/akademia?utm_source=github&utm_medium=url&utm_campaign=akademia)! | ||
You can find more information about our eCommerce services and technologies on our website: https://bitbag.io/. We have also created a unique service dedicated to creating plugins: https://bitbag.io/services/sylius-plugin-development. | ||
|
||
Do you like our work? Would you like to join us? Check out the “Career” tab: https://bitbag.io/pl/kariera. | ||
|
||
# About us | ||
|
||
BitBag is a software house that implements tailor-made eCommerce platforms with the entire infrastructure—from creating eCommerce platforms to implementing PIM and CMS systems to developing custom eCommerce applications, specialist B2B solutions, and migrations from other platforms. | ||
|
||
We actively participate in Sylius's development. We have already completed over 150 projects, cooperating with clients from all over the world, including smaller enterprises and large international companies. We have completed projects for such important brands as **Mytheresa, Foodspring, Planeta Huerto (Carrefour Group), Albeco, Mollie, and ArtNight**. | ||
|
||
We have a 70-person team of experts: business analysts and eCommerce consultants, developers, project managers, and QA testers. | ||
|
||
**Our services:** | ||
* B2B and B2C eCommerce platform implementations | ||
* Multi-vendor marketplace platform implementations | ||
* eCommerce migrations | ||
* Sylius plugin development | ||
* Sylius consulting | ||
* Project maintenance and long-term support | ||
* PIM and CMS implementations | ||
|
||
**Some numbers from BitBag regarding Sylius:** | ||
* 70 experts on board | ||
* +150 projects delivered on top of Sylius, | ||
* 30 countries of BitBag’s customers, | ||
* 7 years in the Sylius ecosystem. | ||
* +35 plugins created for Sylius | ||
|
||
*** | ||
[![](https://bitbag.io/wp-content/uploads/2024/09/badges-sylius.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=pluginsshippingexport) | ||
*** | ||
|
||
## Table of Content | ||
|
||
|
@@ -27,33 +57,26 @@ Like what we do? Want to join us? Check out our job listings on our [career page | |
* [Overview](#overview) | ||
* [Functionalities](#functionalities) | ||
* [Installation](#installation) | ||
* [Usage](#usage) | ||
* [About us](#about-us) | ||
* [Community](#community) | ||
* [Demo](#demo-sylius-shop) | ||
* [Requirements](#requirements) | ||
* [Usage](#usage) | ||
* [Testing](#testing) | ||
* [Demo](#demo) | ||
* [License](#license) | ||
* [Contact](#contact) | ||
* [Contact and Support](#contact-and-support) | ||
* [Community](#community) | ||
|
||
# Overview | ||
|
||
*** | ||
|
||
Managing shipments in any eCommerce app is something that may be tricky. There are many shipping providers and | ||
each has its own API format you might want to use to export shipping data and request the pickup. To make this process more simple and generic, we decided to create an abstract layer for Sylius platform based applications for this purpose. This plugin allows you to write simple API calls and configuration form for | ||
specific shipping provider. The workflow is quite simple - configure a proper data that's needed to export a shipment, like access key or pickup hour, | ||
book a courier for an order with one click and get shipping label file if any was received from the API. | ||
The implementation limits to writing a shipping provider gateway configuration form, one event listener and webservice access layer. | ||
Managing shipments in any eCommerce app is something that may be tricky. There are many shipping providers, and each has its own API format you might want to use to export shipping data and request the pickup. To make this process simpler and generic, we created an abstract layer for Sylius platform-based applications. This plugin allows you to write simple API calls and configuration forms for specific shipping providers. The workflow is quite simple - configure the proper data that's needed to export a shipment, like access key or pickup hour, book a courier for an order with one click, and get a shipping label file if any was received from the API. The implementation limits to writing a shipping provider gateway configuration form, one event listener, and a web service access layer. | ||
|
||
If you are curious about the details of this plugin, read [this blog post](https://bitbag.shop/blog/bitbag-shipping-export-plugin-simple-way-to-control-shipments-in-your-online-store). | ||
# Installation | ||
|
||
## Functionalities | ||
|
||
If you are curious about the details of this plugin and its functionalities, check [this file](https://github.com/BitBagCommerce/SyliusShippingExportPlugin/blob/master/doc/functionalities.md). | ||
|
||
## Installation | ||
For the full installation guide, please go [here](doc/installation.md). | ||
|
||
---- | ||
### Requirements | ||
## Requirements | ||
|
||
We work on stable, supported and up-to-date versions of packages. We recommend you to do the same. | ||
|
||
|
@@ -66,9 +89,6 @@ We work on stable, supported and up-to-date versions of packages. We recommend y | |
|
||
---- | ||
|
||
### Full installation guide | ||
- [See the full installation guide](doc/installation.md) | ||
|
||
## Usage | ||
|
||
### Adding shipping export configuration form | ||
|
@@ -285,99 +305,53 @@ $ vendor/bin/phpspec run | |
$ vendor/bin/phpstan analyse -c phpstan.neon -l max src/ | ||
$ vendor/bin/ecs check src | ||
``` | ||
# Functionalities | ||
|
||
## We are here to help | ||
This **open-source plugin was developed to help the Sylius community**. If you have any additional questions, would like help with installing or configuring the plugin, or need any assistance with your Sylius project - let us know! | ||
|
||
[![](https://bitbag.io/wp-content/uploads/2020/10/button-contact.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
|
||
Read more about [BitBag Sylius Shipping Export Plugin](https://bitbag.io/bitbag-shipping-export-plugin-simple-way-to-control-shipments-in-your-online-store/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
|
||
# About us | ||
|
||
--- | ||
|
||
BitBag is a company of people who **love what they do** and do it right. We fulfill the eCommerce technology stack with **Sylius**, Shopware, Akeneo, and Pimcore for PIM, eZ Platform for CMS, and VueStorefront for PWA. Our goal is to provide real digital transformation with an agile solution that scales with the **clients’ needs**. Our main area of expertise includes eCommerce consulting and development for B2C, B2B, and Multi-vendor Marketplaces.</br> | ||
We are advisers in the first place. We start each project with a diagnosis of problems, and an analysis of the needs and **goals** that the client wants to achieve.</br> | ||
We build **unforgettable**, consistent digital customer journeys on top of the **best technologies**. Based on a detailed analysis of the goals and needs of a given organization, we create dedicated systems and applications that let businesses grow.<br> | ||
Our team is fluent in **Polish, English, German and, French**. That is why our cooperation with clients from all over the world is smooth. | ||
|
||
**Some numbers from BitBag regarding Sylius:** | ||
- 50+ **experts** including consultants, UI/UX designers, Sylius trained front-end and back-end developers, | ||
- 120+ projects **delivered** on top of Sylius, | ||
- 25+ **countries** of BitBag’s customers, | ||
- 4+ **years** in the Sylius ecosystem. | ||
|
||
**Our services:** | ||
- Business audit/Consulting in the field of **strategy** development, | ||
- Data/shop **migration**, | ||
- Headless **eCommerce**, | ||
- Personalized **software** development, | ||
- **Project** maintenance and long term support, | ||
- Technical **support**. | ||
|
||
**Key clients:** Mollie, Guave, P24, Folkstar, i-LUNCH, Elvi Project, WestCoast Gifts. | ||
|
||
--- | ||
|
||
If you need some help with Sylius development, don't be hesitated to contact us directly. You can fill the form on [this site](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) or send us an e-mail at [email protected]! | ||
|
||
--- | ||
|
||
[![](https://bitbag.io/wp-content/uploads/2021/08/sylius-badges-transparent-wide.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
|
||
## Community | ||
All main functionalities of the plugin are described [here](https://github.com/BitBagCommerce/SyliusWishlistPlugin/blob/master/doc/functionalities.md). | ||
|
||
---- | ||
|
||
For online communication, we invite you to chat with us & other users on [Sylius Slack](https://sylius-devs.slack.com/). | ||
|
||
# Demo Sylius Shop | ||
# Demo | ||
|
||
--- | ||
|
||
We created a demo app with some useful use-cases of plugins! | ||
Visit [sylius-demo.bitbag.io](https://sylius-demo.bitbag.io/) to take a look at it. The admin can be accessed under | ||
[sylius-demo.bitbag.io/admin/login](https://sylius-demo.bitbag.io/admin/login) link and `bitbag: bitbag` credentials. | ||
Plugins that we have used in the demo: | ||
|
||
| BitBag's Plugin | GitHub | Sylius' Store| | ||
| ------ | ------ | ------| | ||
| ACL Plugin | *Private. Available after the purchasing.*| https://plugins.sylius.com/plugin/access-control-layer-plugin/| | ||
| Braintree Plugin | https://github.com/BitBagCommerce/SyliusBraintreePlugin |https://plugins.sylius.com/plugin/braintree-plugin/| | ||
| CMS Plugin | https://github.com/BitBagCommerce/SyliusCmsPlugin | https://plugins.sylius.com/plugin/cmsplugin/| | ||
| Elasticsearch Plugin | https://github.com/BitBagCommerce/SyliusElasticsearchPlugin | https://plugins.sylius.com/plugin/2004/| | ||
| Mailchimp Plugin | https://github.com/BitBagCommerce/SyliusMailChimpPlugin | https://plugins.sylius.com/plugin/mailchimp/ | | ||
| Multisafepay Plugin | https://github.com/BitBagCommerce/SyliusMultiSafepayPlugin | | ||
| Wishlist Plugin | https://github.com/BitBagCommerce/SyliusWishlistPlugin | https://plugins.sylius.com/plugin/wishlist-plugin/| | ||
| **Sylius' Plugin** | **GitHub** | **Sylius' Store** | | ||
| Admin Order Creation Plugin | https://github.com/Sylius/AdminOrderCreationPlugin | https://plugins.sylius.com/plugin/admin-order-creation-plugin/ | | ||
| Invoicing Plugin | https://github.com/Sylius/InvoicingPlugin | https://plugins.sylius.com/plugin/invoicing-plugin/ | | ||
| Refund Plugin | https://github.com/Sylius/RefundPlugin | https://plugins.sylius.com/plugin/refund-plugin/ | | ||
We created a demo app with some useful use-cases of plugins! Visit http://demo.sylius.com/ to take a look at it. | ||
|
||
**If you need an overview of Sylius' capabilities, schedule a consultation with our expert.** | ||
|
||
[![](https://bitbag.io/wp-content/uploads/2020/10/button_free_consulatation-1.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
|
||
## Additional resources for developers | ||
# Additional resources for developers | ||
|
||
--- | ||
To learn more about our contribution workflow and more, we encourage you to use the following resources: | ||
* [Sylius Documentation](https://docs.sylius.com/en/latest/) | ||
* [Sylius Contribution Guide](https://docs.sylius.com/en/latest/contributing/) | ||
* [Sylius Online Course](https://sylius.com/online-course/) | ||
* [Sylius Shipping Export Plugin Blog](https://bitbag.io/blog/bitbag-shipping-export-plugin-simple-way-to-control-shipments-in-your-online-store) | ||
|
||
## License | ||
# License | ||
|
||
--- | ||
|
||
This plugin's source code is completely free and released under the terms of the MIT license. | ||
|
||
[//]: # (These are reference links used in the body of this note and get stripped out when the markdown processor does its job. There is no need to format nicely because it shouldn't be seen.) | ||
|
||
## Contact | ||
--- | ||
# Contact and Support | ||
|
||
This open-source plugin was developed to help the Sylius community. If you have any additional questions, would like help with installing or configuring the plugin, or need any assistance with your Sylius project - let us know! | ||
|
||
Contact us or send us an e-mail to [email protected] with your question(s). | ||
|
||
[![](https://bitbag.io/wp-content/uploads/2020/10/button-contact.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
|
||
--- | ||
|
||
If you need some help with Sylius development, don't be hesitated to contact us directly. You can fill the form on [this site](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) or send us an e-mail at [email protected]! | ||
|
||
--- | ||
If you want to contact us, the best way is to fill the form on [our website](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) or send us an e-mail to [email protected] with your question(s). We guarantee that we answer as soon as we can! | ||
# Community | ||
|
||
We invite you to chat with us & other users on [Sylius Slack](https://sylius-devs.slack.com/) for online communication. | ||
|
||
[![](https://bitbag.io/wp-content/uploads/2021/08/badges-bitbag.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) | ||
[![](https://bitbag.io/wp-content/uploads/2024/09/badges-partners.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_shipping_export) |