PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Okanlawon Anuoluwapo   PHP REST API   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP REST API
Implement a REST API using WebSockets
Author: By
Last change:
Date: 26 days ago
Size: 1,089 bytes
 

Contents

Class file image Download
{ "name": "anuthedeveloper/phptestapi", "description": "A custom PHP API without a framework", "type": "project", "keywords": [ "php", "core", "vanilla" ], "require": { "php": "^7.4 || ^8.0", "cboden/ratchet": "^0.4.4", "firebase/php-jwt": "^6.4", "monolog/monolog": "^2.9", "phpmailer/phpmailer": "^6.9", "ramsey/uuid": "^4.7", "stripe/stripe-php": "*", "vlucas/phpdotenv": "^5.5" }, "require-dev": { "phpunit/phpunit": "^11.3" }, "autoload": { "psr-4": { "App\\": "app/", "Config\\": "config/", "Migrations\\": "migrations/", "Tests\\": "tests" }, "files": [ "helpers.php" ] }, "scripts": { "test": "phpunit", "test-coverage": "phpunit --coverage-text", "post-autoload-dump": [ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"", "@php -r \"require 'bootstrap/bootstrap.php';\"" ] }, "config": { "optimize-autoloader": true, "sort-packages": true }, "minimum-stability": "stable", "prefer-stable": true }