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 903B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. },
  37. "autoload": {
  38. "psr-4": { "Tqdev\\PhpCrudApi\\": "src/Tqdev/PhpCrudApi" }
  39. }
  40. }