You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 507B

123456789101112131415161718192021
  1. {
  2. "name": "scavenger/simple-dbal",
  3. "version": "0.2.0",
  4. "description": "A Simple Database Abstraction Layer with a few simple Classes to prevent writing raw SQL in your Code",
  5. "type": "library",
  6. "authors": [
  7. {
  8. "name": "Marcel Voelkel",
  9. "email": "m.voelkel@scav-media.com"
  10. }
  11. ],
  12. "minimum-stability": "dev",
  13. "require": {
  14. "php": ">=7.1"
  15. },
  16. "autoload": {
  17. "psr-0": {
  18. "SimpleDBAL": "src/"
  19. }
  20. }
  21. }