mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
Remove Travis CI remnants
This commit is contained in:
parent
bb8549c419
commit
d81fded3ca
42 changed files with 41 additions and 101 deletions
2
.github/autolabeler.yml
vendored
2
.github/autolabeler.yml
vendored
|
|
@ -1,5 +1,5 @@
|
|||
Admin: ['src/Sylius/Bundle/AdminBundle/']
|
||||
API: ['src/Sylius/Bundle/ApiBundle/']
|
||||
Documentation: ['docs/']
|
||||
Maintenance: ['etc/', '.travis.yml', '.symfony.insight.yaml', 'UPGRADE-*', 'README.md']
|
||||
Maintenance: ['etc/', '.github/', '*.md']
|
||||
Shop: ['src/Sylius/Bundle/ShopBundle/']
|
||||
|
|
|
|||
|
|
@ -86,16 +86,6 @@ exit_on_error() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Argument 1: String to hash
|
||||
text_md5sum() {
|
||||
echo "$1" | md5sum | awk '{ print $1 }'
|
||||
}
|
||||
|
||||
# Argument 1: File to hash
|
||||
file_md5sum() {
|
||||
md5sum "$1" | awk '{ print $1 }'
|
||||
}
|
||||
|
||||
# Argument 1: Binary name
|
||||
get_binary()
|
||||
{
|
||||
|
|
@ -108,37 +98,11 @@ get_binary()
|
|||
fi
|
||||
}
|
||||
|
||||
get_number_of_jobs_for_parallel()
|
||||
{
|
||||
local jobs="100%"
|
||||
|
||||
if [[ "${TRAVIS}" = "true" ]]; then
|
||||
jobs="2"
|
||||
fi
|
||||
|
||||
echo "${jobs}"
|
||||
}
|
||||
|
||||
get_sylius_path()
|
||||
{
|
||||
echo "$(cd "$(dirname "${BASH_SOURCE[0]}")/../../" && pwd)"
|
||||
}
|
||||
|
||||
has_sylius_cache() {
|
||||
if [[ ! -z "${SYLIUS_CACHE_DIR}" && -d "${SYLIUS_CACHE_DIR}" ]]; then
|
||||
return 0
|
||||
else
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
inform_about_sylius_cache() {
|
||||
if ! has_sylius_cache; then
|
||||
print_warning "Sylius cache should be used, but it is not configured correctly."
|
||||
print_warning "Check whether you have \$SYLIUS_CACHE_DIR set and if that directory exists."
|
||||
fi
|
||||
}
|
||||
|
||||
locate_packages() {
|
||||
find "$(pwd)/src/Sylius" -mindepth 3 -maxdepth 3 -type f -name composer.json -exec dirname '{}' \;
|
||||
}
|
||||
|
|
@ -171,27 +135,3 @@ cast_package_argument_to_package_path() {
|
|||
|
||||
echo "${package_path}"
|
||||
}
|
||||
|
||||
# Argument 1: Package path or name
|
||||
is_package_cache_fresh() {
|
||||
local current_hash cached_hash
|
||||
local package_path="$(cast_package_argument_to_package_path "$1")"
|
||||
local cache_key="$(get_package_cache_key "$1")"
|
||||
|
||||
if [[ -f "${SYLIUS_CACHE_DIR}/composer-${cache_key}.lock" && -f "${SYLIUS_CACHE_DIR}/composer-${cache_key}.json.md5sum" ]]; then
|
||||
current_hash="$(file_md5sum "${package_path}/composer.json")"
|
||||
cached_hash="$(cat "${SYLIUS_CACHE_DIR}/composer-${cache_key}.json.md5sum")"
|
||||
|
||||
if [ "${current_hash}" = "${cached_hash}" ]; then
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
# Argument 1: Package path or name
|
||||
get_package_cache_key()
|
||||
{
|
||||
text_md5sum "$(cast_package_argument_to_package_path "$1")"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusAddressingBundle [](http://travis-ci.org/Sylius/SyliusAddressingBundle)
|
||||
SyliusAddressingBundle
|
||||
======================
|
||||
|
||||
Addresses management is a common task for almost every ecommerce application.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusAdminApiBundle [](http://travis-ci.org/Sylius/SyliusAdminApiBundle)
|
||||
SyliusAdminApiBundle
|
||||
===============
|
||||
|
||||
Sylius REST API bundle.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusAdminBundle [](http://travis-ci.org/Sylius/SyliusAdminBundle)
|
||||
SyliusAdminBundle
|
||||
=================
|
||||
|
||||
This bundle contains the Sylius administration panel.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusAttributeBundle [](http://travis-ci.org/Sylius/SyliusAttributeBundle)
|
||||
SyliusAttributeBundle
|
||||
=====================
|
||||
|
||||
Attributes system for entities in Symfony2 applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusChannelBundle [](http://travis-ci.org/Sylius/SyliusChannelBundle)
|
||||
SyliusChannelBundle
|
||||
===================
|
||||
|
||||
Symfony2 bundle for handling multiple channels in e-commerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusCoreBundle [](http://travis-ci.org/Sylius/SyliusCoreBundle)
|
||||
SyliusCoreBundle
|
||||
================
|
||||
|
||||
Sylius Core Bundle integrates all other bundles into complete eCommerce solution for [Symfony2](https://symfony.com).
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusCurrencyBundle [](http://travis-ci.org/Sylius/SyliusCurrencyBundle)
|
||||
SyliusCurrencyBundle
|
||||
====================
|
||||
|
||||
[**Symfony2**](https://symfony.com) integration of Sylius Currency processing component.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusCustomerBundle [](http://travis-ci.org/Sylius/SyliusCustomerBundle)
|
||||
SyliusCustomerBundle
|
||||
==================
|
||||
|
||||
[**Symfony2**](https://symfony.com) integration of Sylius Customer management component.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusInventoryBundle [](http://travis-ci.org/Sylius/SyliusInventoryBundle)
|
||||
SyliusInventoryBundle
|
||||
=====================
|
||||
|
||||
Flexible inventory management for [**Symfony2**](https://symfony.com) eCommerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusLocaleBundle [](http://travis-ci.org/Sylius/SyliusLocaleBundle)
|
||||
SyliusLocaleBundle
|
||||
==================
|
||||
|
||||
[**Symfony2**](https://symfony.com) integration of Sylius Locale management component.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusMoneyBundle [](http://travis-ci.org/Sylius/SyliusMoneyBundle)
|
||||
SyliusMoneyBundle
|
||||
=================
|
||||
|
||||
[**Symfony2**](https://symfony.com) integration with PHP Money library.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusOrderBundle [](http://travis-ci.org/Sylius/SyliusOrderBundle)
|
||||
SyliusOrderBundle
|
||||
=================
|
||||
|
||||
Sales order bundle for [**Symfony2**](https://symfony.com) ecommerce applications. It allows you to start building you application with sensible and flexible models.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusPaymentBundle [](http://travis-ci.org/Sylius/SyliusPaymentBundle)
|
||||
SyliusPaymentBundle
|
||||
====================
|
||||
|
||||
Payments component integration for [**Symfony2**](https://symfony.com) eCommerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusPayumBundle [](http://travis-ci.org/Sylius/SyliusPayumBundle)
|
||||
SyliusPayumBundle
|
||||
=================
|
||||
|
||||
Payum integration for Sylius.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusProductBundle [](http://travis-ci.org/Sylius/SyliusProductBundle)
|
||||
SyliusProductBundle
|
||||
===================
|
||||
|
||||
Products system for [**Symfony2**](https://symfony.com) applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusPromotionBundle [](http://travis-ci.org/Sylius/SyliusPromotionBundle)
|
||||
SyliusPromotionBundle
|
||||
===================
|
||||
|
||||
Promotions engine for [**Symfony2**](https://symfony.com) eCommerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusReviewBundle [](http://travis-ci.org/Sylius/SyliusReviewBundle)
|
||||
SyliusReviewBundle
|
||||
====================
|
||||
|
||||
Sylius
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusShippingBundle [](http://travis-ci.org/Sylius/SyliusShippingBundle)
|
||||
SyliusShippingBundle
|
||||
====================
|
||||
|
||||
Shipping component integration for [**Symfony2**](https://symfony.com) eCommerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusShopBundle [](http://travis-ci.org/Sylius/SyliusShopBundle)
|
||||
SyliusShopBundle
|
||||
================
|
||||
|
||||
This bundle contains Sylius eCommerce storefront.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusTaxationBundle [](http://travis-ci.org/Sylius/SyliusTaxationBundle)
|
||||
SyliusTaxationBundle
|
||||
====================
|
||||
|
||||
Customizable taxation system for [**Symfony2**](https://symfony.com) e-commerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusTaxonomyBundle [](http://travis-ci.org/Sylius/SyliusTaxonomyBundle)
|
||||
SyliusTaxonomyBundle
|
||||
======================
|
||||
|
||||
Flexible categorization system based on [Spree Taxonomies system](http://guides.spreecommerce.org/user/configuring_taxonomies.html) for [**Symfony2**](https://symfony.com) eCommerce applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusUiBundle [](http://travis-ci.org/Sylius/SyliusUiBundle)
|
||||
SyliusUiBundle
|
||||
==============
|
||||
|
||||
Sylius
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SyliusUserBundle [](http://travis-ci.org/Sylius/SyliusUserBundle)
|
||||
SyliusUserBundle
|
||||
==================
|
||||
|
||||
[**Symfony2**](https://symfony.com) integration of Sylius User management component.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Addressing Component [](http://travis-ci.org/Sylius/Addressing)
|
||||
Addressing Component
|
||||
====================
|
||||
|
||||
Addresses management is a common task for almost every eCommerce project.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Attribute Component [](http://travis-ci.org/Sylius/Attribute)
|
||||
Attribute Component
|
||||
===================
|
||||
|
||||
Attributes engine for PHP objects.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Channel Component [](http://travis-ci.org/Sylius/Channel)
|
||||
Channel Component
|
||||
=================
|
||||
|
||||
E-Commerce PHP component for managing different sales channels.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Core Component [](http://travis-ci.org/Sylius/Core)
|
||||
Core Component
|
||||
==============
|
||||
|
||||
Sylius core - it integrates all other components into an eCommerce framework for PHP.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Currency Component [](http://travis-ci.org/Sylius/Currency)
|
||||
Currency Component
|
||||
===============
|
||||
|
||||
Currency converting engine for PHP objects.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Customer Component [](http://travis-ci.org/Sylius/Customer)
|
||||
Customer Component
|
||||
================
|
||||
|
||||
Managing customers in PHP applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Inventory Component [](http://travis-ci.org/Sylius/Inventory)
|
||||
Inventory Component
|
||||
===================
|
||||
|
||||
Inventory management for PHP applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Locale Component [](http://travis-ci.org/Sylius/Locale)
|
||||
Locale Component
|
||||
================
|
||||
|
||||
Managing different locales in PHP applications.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Order Component [](http://travis-ci.org/Sylius/Order)
|
||||
Order Component
|
||||
===============
|
||||
|
||||
This component contains default Order model for PHP applications. It supports
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Payment Component [](http://travis-ci.org/Sylius/Payment)
|
||||
Payment Component
|
||||
=================
|
||||
|
||||
Sylius Payment component **does not** provide any gateways. It is only a raw
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Product Component [](http://travis-ci.org/Sylius/Product)
|
||||
Product Component
|
||||
=================
|
||||
|
||||
Sylius product catalog comes with support of different product attributes,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Promotion Component [](http://travis-ci.org/Sylius/Promotion)
|
||||
Promotion Component
|
||||
===================
|
||||
|
||||
Almost every e-commerce project needs strong tools for marketing campaigns.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Review Component [](http://travis-ci.org/Sylius/Review)
|
||||
Review Component
|
||||
=================
|
||||
|
||||
E-Commerce PHP component for managing reviews.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Shipping Component [](http://travis-ci.org/Sylius/Shipping)
|
||||
Shipping Component
|
||||
==================
|
||||
|
||||
Sylius e-commerce Shipping component is a complete solution to manage
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Taxation Component [](http://travis-ci.org/Sylius/Taxation)
|
||||
Taxation Component
|
||||
==================
|
||||
|
||||
Taxation needs to handle different type of items, zones and tax rates. Sylius
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Taxonomy Component [](http://travis-ci.org/Sylius/Taxonomy)
|
||||
Taxonomy Component
|
||||
==================
|
||||
|
||||
Categorization is one of the most basic functionality for modern web
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
User Component [](http://travis-ci.org/Sylius/User)
|
||||
User Component
|
||||
================
|
||||
|
||||
Managing users in PHP applications.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue