Skip to content

Commit 663d3c8

Browse files
committed
Merge remote-tracking branch 'origin/master' into bugfix/cc-7652-product-attributes-saving
2 parents 2dfa1af + 5cd4af0 commit 663d3c8

5 files changed

Lines changed: 45 additions & 16 deletions

File tree

.gitattributes

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
# Define the line ending behavior of the different file extensions
12
# Set the default behavior, in case people don't have core.autocrlf set.
2-
* eol=lf
3-
* text=auto
3+
* text text=auto eol=lf
44

55
# Denote all files that are truly binary and should not be modified.
66
*.png binary
@@ -23,9 +23,11 @@
2323
# Remove files for archives generated using `git archive`
2424
codeception.yml export-ignore
2525
dependency.json export-ignore
26+
phpstan.json export-ignore
27+
phpstan.neon export-ignore
28+
tooling.yml export-ignore
2629
.coveralls.yml export-ignore
2730
.travis.yml export-ignore
2831
.editorconfig export-ignore
2932
.gitattributes export-ignore
3033
.gitignore export-ignore
31-
tooling.yml export-ignore

.gitignore

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,36 @@
1-
# IDEs
2-
/.idea
3-
/.project
4-
/nbproject
5-
/.buildpath
6-
/.settings
1+
# IDE
2+
.idea/
3+
.project/
4+
nbproject/
5+
.buildpath/
6+
.settings/
77
*.sublime-*
8+
9+
# OS
10+
.DS_Store
811
*.AppleDouble
912
*.AppleDB
1013
*.AppleDesktop
1114

12-
# OS
13-
.DS_Store
15+
# grunt stuff
16+
.grunt
17+
.sass-cache
18+
/node_modules/
19+
20+
# tooling
21+
vendor/
22+
composer.lock
23+
.phpunit.result.cache
24+
25+
# built client resources
26+
src/*/Zed/*/Static/Public
27+
src/*/Zed/*/Static/Assets/sprite
1428

15-
/vendor
16-
/composer.lock
29+
# Propel classes
30+
src/*/Zed/*/Persistence/Propel/Base/*
31+
src/*/Zed/*/Persistence/Propel/Map/*
1732

18-
/tests/_output/*
19-
!/tests/_output/.gitkeep
33+
# tests
34+
tests/**/_generated/
35+
tests/_output/*
36+
!tests/_output/.gitkeep

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ before_install:
2121

2222
install:
2323
- COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction
24-
- if [[ $PREFER_LOWEST == 1 ]]; then COMPOSER_MEMORY_LIMIT=-1 composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable ; fi
24+
- if [[ $PREFER_LOWEST == 1 ]]; then COMPOSER_MEMORY_LIMIT=-1 composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction ; fi
25+
- if [[ $PREFER_LOWEST == 1 ]]; then COMPOSER_MEMORY_LIMIT=-1 composer require --dev dereuromark/composer-prefer-lowest; fi
2526

2627
script:
2728
- find ./src -path src -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
2829

30+
- if [[ $PREFER_LOWEST == 1 ]]; then vendor/bin/validate-prefer-lowest || true; fi
31+
2932
cache:
3033
directories:
3134
- $HOME/.composer/cache/

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# ProductAttributeGui Module
2+
[![Build Status](https://travis-ci.org/spryker/product-attribute-gui.svg)](https://travis-ci.org/spryker/product-attribute-gui)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.2-8892BF.svg)](https://php.net/)
24

35
ProductAttributeGui is a user interface module to manage product attributes in the Zed Administration Interface.
46

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
},
1616
"require-dev": {
1717
"spryker/application": "*",
18+
"spryker/code-sniffer": "*",
1819
"spryker/propel": "*",
1920
"spryker/testify": "*",
2021
"spryker/zed-navigation": "*"
@@ -31,6 +32,10 @@
3132
},
3233
"minimum-stability": "dev",
3334
"prefer-stable": true,
35+
"scripts": {
36+
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
37+
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/"
38+
},
3439
"extra": {
3540
"branch-alias": {
3641
"dev-master": "1.0.x-dev"

0 commit comments

Comments
 (0)