File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
2323# Remove files for archives generated using `git archive`
2424codeception.yml export-ignore
2525dependency.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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -21,11 +21,14 @@ before_install:
2121
2222install :
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
2627script :
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+
2932cache :
3033 directories :
3134 - $HOME/.composer/cache/
Original file line number Diff line number Diff line change 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
35ProductAttributeGui is a user interface module to manage product attributes in the Zed Administration Interface.
46
Original file line number Diff line number Diff line change 1515 },
1616 "require-dev" : {
1717 "spryker/application" : " *" ,
18+ "spryker/code-sniffer" : " *" ,
1819 "spryker/propel" : " *" ,
1920 "spryker/testify" : " *" ,
2021 "spryker/zed-navigation" : " *"
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"
You can’t perform that action at this time.
0 commit comments