diff --git a/.gitattributes b/.gitattributes index 7e73ce1..2d8e2dc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,7 +4,6 @@ .php_cs.dist export-ignore .rmt.yml export-ignore .travis export-ignore -build.xml export-ignore Makefile export-ignore phpunit.xml.dist export-ignore tests/ export-ignore diff --git a/LICENSE.md b/LICENSE.md index 42f9833..4c59dad 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Christian Gripp +Copyright (c) 2015-2018 Christian Gripp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 05e401d..34b1f2b 100755 --- a/Makefile +++ b/Makefile @@ -5,9 +5,9 @@ all: lint: composer validate - find . -name '*.yml' -not -path './vendor/*' -not -path './Resources/public/vendor/*' | xargs yaml-lint + find . -name '*.yml' -not -path './vendor/*' -not -path './src/Resources/public/vendor/*' | xargs yaml-lint find . \( -name '*.xml' -or -name '*.xlf' \) \ - -not -path './vendor/*' -not -path './Resources/public/vendor/*' \ + -not -path './vendor/*' -not -path './src/Resources/public/vendor/*' \ | xargs -I'{}' xmllint --encode UTF-8 --output '{}' --format '{}' php-cs-fixer fix --verbose git diff --exit-code