PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Bhavin Gajjar   Laravel Python   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Python
Execute scripts written in Python
Author: By
Last change:
Date: 1 month ago
Size: 1,359 bytes
 

Contents

Class file image Download
{ "name": "bhavingajjar/laravel-python", "description": "Run Python scripts inside your Laravel", "keywords": [ "bhavingajjar", "laravel-python" ], "homepage": "https://github.com/bhavingajjar/laravel-python", "license": "MIT", "type": "library", "authors": [ { "name": "Bhavin Gajjar", "email": "gajjarbhavin22@gmail.com", "role": "Developer" } ], "require": { "php": "^7.4|^8.0", "illuminate/support": "^8.0|^9.0|^10.0" }, "require-dev": { "orchestra/testbench": "^6.0", "phpunit/phpunit": "^9.0" }, "autoload": { "psr-4": { "Bhavingajjar\\LaravelPython\\": "src" } }, "autoload-dev": { "psr-4": { "Bhavingajjar\\LaravelPython\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Bhavingajjar\\LaravelPython\\LaravelPythonServiceProvider" ], "aliases": { "LaravelPython": "Bhavingajjar\\LaravelPython\\LaravelPythonFacade" } } } }