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

12345678910111213141516171819202122232425262728293031323334353637
  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. "sql-server",
  11. "postgresql",
  12. "php-api",
  13. "postgis",
  14. "crud",
  15. "rest-api",
  16. "openapi",
  17. "swagger"
  18. ],
  19. "homepage": "https://github.com/mevdschee/php-crud-api",
  20. "license": "MIT",
  21. "authors": [
  22. {
  23. "name": "Maurits van der Schee",
  24. "email": "maurits@vdschee.nl",
  25. "homepage": "https://github.com/mevdschee"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=5.3.0"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^4.8.35"
  33. },
  34. "autoload": {
  35. "files": ["api.php"]
  36. }
  37. }