|
| 1 | +/coverage/ |
| 2 | +composer.phar |
1 | 3 | /vendor/
|
| 4 | + |
| 5 | +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control |
| 6 | +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file |
| 7 | +# composer.lock |
| 8 | + |
| 9 | +# General |
| 10 | +.DS_Store |
| 11 | +.AppleDouble |
| 12 | +.LSOverride |
| 13 | + |
| 14 | +# Icon must end with two \r |
| 15 | +Icon |
| 16 | + |
| 17 | + |
| 18 | +# Thumbnails |
| 19 | +._* |
| 20 | + |
| 21 | +# Files that might appear in the root of a volume |
| 22 | +.DocumentRevisions-V100 |
| 23 | +.fseventsd |
| 24 | +.Spotlight-V100 |
| 25 | +.TemporaryItems |
| 26 | +.Trashes |
| 27 | +.VolumeIcon.icns |
| 28 | +.com.apple.timemachine.donotpresent |
| 29 | + |
| 30 | +# Directories potentially created on remote AFP share |
| 31 | +.AppleDB |
| 32 | +.AppleDesktop |
| 33 | +Network Trash Folder |
| 34 | +Temporary Items |
| 35 | +.apdisk |
| 36 | + |
| 37 | +# Windows thumbnail cache files |
| 38 | +Thumbs.db |
| 39 | +ehthumbs.db |
| 40 | +ehthumbs_vista.db |
| 41 | + |
| 42 | +# Dump file |
| 43 | +*.stackdump |
| 44 | + |
| 45 | +# Folder config file |
| 46 | +[Dd]esktop.ini |
| 47 | + |
| 48 | +# Recycle Bin used on file shares |
| 49 | +$RECYCLE.BIN/ |
| 50 | + |
| 51 | +# Windows Installer files |
| 52 | +*.cab |
| 53 | +*.msi |
| 54 | +*.msix |
| 55 | +*.msm |
| 56 | +*.msp |
| 57 | + |
| 58 | +# Windows shortcuts |
| 59 | +*.lnk |
| 60 | + |
| 61 | +*~ |
| 62 | + |
| 63 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 64 | +.fuse_hidden* |
| 65 | + |
| 66 | +# KDE directory preferences |
| 67 | +.directory |
| 68 | + |
| 69 | +# Linux trash folder which might appear on any partition or disk |
| 70 | +.Trash-* |
| 71 | + |
| 72 | +# .nfs files are created when an open file is removed but is still being accessed |
| 73 | +.nfs* |
| 74 | + |
| 75 | +# Logs |
| 76 | +logs |
| 77 | +*.log |
| 78 | +npm-debug.log* |
| 79 | +yarn-debug.log* |
| 80 | +yarn-error.log* |
| 81 | + |
| 82 | +# Runtime data |
| 83 | +pids |
| 84 | +*.pid |
| 85 | +*.seed |
| 86 | +*.pid.lock |
| 87 | + |
| 88 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 89 | +lib-cov |
| 90 | + |
| 91 | +# Coverage directory used by tools like istanbul |
| 92 | +coverage |
| 93 | + |
| 94 | +# nyc test coverage |
| 95 | +.nyc_output |
| 96 | + |
| 97 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 98 | +.grunt |
| 99 | + |
| 100 | +# Bower dependency directory (https://bower.io/) |
| 101 | +bower_components |
| 102 | + |
| 103 | +# node-waf configuration |
| 104 | +.lock-wscript |
| 105 | + |
| 106 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 107 | +build/Release |
| 108 | + |
| 109 | +# Dependency directories |
| 110 | +node_modules/ |
| 111 | +jspm_packages/ |
| 112 | + |
| 113 | +# TypeScript v1 declaration files |
| 114 | +typings/ |
| 115 | + |
| 116 | +# Optional npm cache directory |
| 117 | +.npm |
| 118 | + |
| 119 | +# Optional eslint cache |
| 120 | +.eslintcache |
| 121 | + |
| 122 | +# Optional REPL history |
| 123 | +.node_repl_history |
| 124 | + |
| 125 | +# Output of 'npm pack' |
| 126 | +*.tgz |
| 127 | + |
| 128 | +# Yarn Integrity file |
| 129 | +.yarn-integrity |
| 130 | + |
| 131 | +# dotenv environment variables file |
| 132 | +.env |
| 133 | + |
| 134 | +# parcel-bundler cache (https://parceljs.org/) |
| 135 | +.cache |
| 136 | + |
| 137 | +# next.js build output |
| 138 | +.next |
| 139 | + |
| 140 | +# nuxt.js build output |
| 141 | +.nuxt |
| 142 | + |
| 143 | +# vuepress build output |
| 144 | +.vuepress/dist |
| 145 | + |
| 146 | +# Serverless directories |
| 147 | +.serverless |
0 commit comments