api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
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 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "mevdschee/php-crud-api",
  3. "type": "library",
  4. "description": "Single file PHP script that adds a REST API to a SQL database.",
  5. "keywords": [
  6. "api-server",
  7. "restful",
  8. "mysql",
  9. "geospatial",
  10. "php",
  11. "sql-server",
  12. "postgresql",
  13. "php-api",
  14. "postgis",
  15. "crud",
  16. "rest-api",
  17. "openapi",
  18. "swagger",
  19. "automatic-api",
  20. "database",
  21. "multi-database",
  22. "sql-database",
  23. "ubuntu-linux"
  24. ],
  25. "homepage": "https://github.com/mevdschee/php-crud-api",
  26. "license": "MIT",
  27. "authors": [
  28. {
  29. "name": "Maurits van der Schee",
  30. "email": "maurits@vdschee.nl",
  31. "homepage": "https://github.com/mevdschee"
  32. }
  33. ],
  34. "require": {
  35. "php": ">=7.0.0",
  36. "ext-zlib": "*",
  37. "ext-json": "*",
  38. "ext-pdo": "*",
  39. "psr/http-message": "*",
  40. "psr/http-factory": "*",
  41. "psr/http-server-handler": "*",
  42. "psr/http-server-middleware": "*",
  43. "nyholm/psr7": "*",
  44. "nyholm/psr7-server": "*"
  45. },
  46. "suggest": {
  47. "ext-memcache": "*",
  48. "ext-memcached": "*",
  49. "ext-redis": "*"
  50. },
  51. "autoload": {
  52. "psr-4": { "Tqdev\\PhpCrudApi\\": "src/Tqdev/PhpCrudApi" }
  53. }
  54. }