1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# IDE Shizzle; it is recommended to use a global .gitignore for this but since this is an OSS project we want to make
# it easy to contribute
.idea
/nbproject/private/
.buildpath
.project
.settings
# No need to version the binary files of other tools
bin/behat*
bin/phpcs*
bin/phpunit*
bin/jsonlint*
bin/validate-json*
temp/ecs/*
# Build folder and vendor folder are generated code; no need to version this
build/
tools/
vendor/
*.phar
# By default the phpunit.xml.dist is provided; you can override this using a local config file
phpunit.xml
.phpunit.result.cache
|