A collection of all my PHP lessons, exercises, projects and more!
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. # ---> Composer
  2. composer.phar
  3. /vendor/
  4. # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
  5. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  6. # composer.lock
  7. # ---> Archives
  8. # It's better to unpack these files and commit the raw source because
  9. # git has its own built in compression methods.
  10. *.7z
  11. *.jar
  12. *.rar
  13. *.zip
  14. *.gz
  15. *.tgz
  16. *.bzip
  17. *.bz2
  18. *.xz
  19. *.lzma
  20. *.cab
  21. # Packing-only formats
  22. *.iso
  23. *.tar
  24. # Package management formats
  25. *.dmg
  26. *.xpi
  27. *.gem
  28. *.egg
  29. *.deb
  30. *.rpm
  31. *.msi
  32. *.msm
  33. *.msp
  34. # ---> Dart
  35. # See https://www.dartlang.org/guides/libraries/private-files
  36. # Files and directories created by pub
  37. .dart_tool/
  38. .packages
  39. build/
  40. # If you're building an application, you may want to check-in your pubspec.lock
  41. pubspec.lock
  42. # Directory created by dartdoc
  43. # If you don't generate documentation locally you can remove this line.
  44. doc/api/
  45. # Avoid committing generated Javascript files:
  46. *.dart.js
  47. *.info.json # Produced by the --dump-info flag.
  48. *.js # When generated by dart2js. Don't specify *.js if your
  49. # project includes source files written in JavaScript.
  50. *.js_
  51. *.js.deps
  52. *.js.map
  53. # ---> Linux
  54. *~
  55. # temporary files which can be created if a process still has a handle open of a deleted file
  56. .fuse_hidden*
  57. # KDE directory preferences
  58. .directory
  59. # Linux trash folder which might appear on any partition or disk
  60. .Trash-*
  61. # .nfs files are created when an open file is removed but is still being accessed
  62. .nfs*
  63. # ---> Node
  64. # Logs
  65. logs
  66. *.log
  67. npm-debug.log*
  68. yarn-debug.log*
  69. yarn-error.log*
  70. # Runtime data
  71. pids
  72. *.pid
  73. *.seed
  74. *.pid.lock
  75. # Directory for instrumented libs generated by jscoverage/JSCover
  76. lib-cov
  77. # Coverage directory used by tools like istanbul
  78. coverage
  79. # nyc test coverage
  80. .nyc_output
  81. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  82. .grunt
  83. # Bower dependency directory (https://bower.io/)
  84. bower_components
  85. # node-waf configuration
  86. .lock-wscript
  87. # Compiled binary addons (https://nodejs.org/api/addons.html)
  88. build/Release
  89. # Dependency directories
  90. node_modules/
  91. jspm_packages/
  92. # TypeScript v1 declaration files
  93. typings/
  94. # Optional npm cache directory
  95. .npm
  96. # Optional eslint cache
  97. .eslintcache
  98. # Optional REPL history
  99. .node_repl_history
  100. # Output of 'npm pack'
  101. *.tgz
  102. # Yarn Integrity file
  103. .yarn-integrity
  104. # dotenv environment variables file
  105. .env
  106. # parcel-bundler cache (https://parceljs.org/)
  107. .cache
  108. # next.js build output
  109. .next
  110. # nuxt.js build output
  111. .nuxt
  112. # vuepress build output
  113. .vuepress/dist
  114. # Serverless directories
  115. .serverless
  116. # FuseBox cache
  117. .fusebox/
  118. # ---> Sass
  119. .sass-cache/
  120. *.css.map
  121. *.sass.map
  122. *.scss.map
  123. # ---> VisualStudioCode
  124. .vscode/*
  125. !.vscode/settings.json
  126. !.vscode/tasks.json
  127. !.vscode/launch.json
  128. !.vscode/extensions.json
  129. # ---> Windows
  130. # Windows thumbnail cache files
  131. Thumbs.db
  132. ehthumbs.db
  133. ehthumbs_vista.db
  134. # Dump file
  135. *.stackdump
  136. # Folder config file
  137. [Dd]esktop.ini
  138. # Recycle Bin used on file shares
  139. $RECYCLE.BIN/
  140. # Windows Installer files
  141. *.cab
  142. *.msi
  143. *.msix
  144. *.msm
  145. *.msp
  146. # Windows shortcuts
  147. *.lnk
  148. # ---> macOS
  149. # General
  150. .DS_Store
  151. .AppleDouble
  152. .LSOverride
  153. # Icon must end with two \r
  154. Icon
  155. # Thumbnails
  156. ._*
  157. # Files that might appear in the root of a volume
  158. .DocumentRevisions-V100
  159. .fseventsd
  160. .Spotlight-V100
  161. .TemporaryItems
  162. .Trashes
  163. .VolumeIcon.icns
  164. .com.apple.timemachine.donotpresent
  165. # Directories potentially created on remote AFP share
  166. .AppleDB
  167. .AppleDesktop
  168. Network Trash Folder
  169. Temporary Items
  170. .apdisk