From b81f911ec30a20752148c42137ca570ef1329aa1 Mon Sep 17 00:00:00 2001 From: Xuan Thinh Date: Sat, 20 Jul 2024 15:13:16 +0700 Subject: [PATCH] feat: update composer to add cslant blog api package #1 --- composer.json | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/composer.json b/composer.json index e69de29..22898d3 100644 --- a/composer.json +++ b/composer.json @@ -0,0 +1,76 @@ +{ + "name": "cslant/blog-core", + "description": "Send notification from Gitlab and Github events to Telegram", + "keywords": [ + "cslant", + "laravel", + "cslant-blog-api-package", + "cslant-blog-api", + "cslant-blog", + "cslant-api", + "cslant-package", + "blog-api-package", + "blog-core" + ], + "homepage": "https://github.com/cslant/blog-core", + "license": "MIT", + "authors": [ + { + "name": "Tan Nguyen", + "email": "tannp27@gmail.com", + "homepage": "https://tanhongit.com", + "role": "Developer" + }, + { + "name": "Xuan Thinh", + "email": "pxthinh.vn@gmail.com", + "role": "Developer" + } + ], + "autoload": { + "psr-4": { + "CSlant\\BlogApi\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "CSlant\\BlogApi\\Tests\\": "tests/" + } + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^v3.0", + "nunomaduro/collision": "^7.10", + "nunomaduro/larastan": "^2.9", + "orchestra/testbench": "^8.0", + "pestphp/pest": "^2.0", + "phpstan/extension-installer": "^1.3", + "phpstan/phpstan-deprecation-rules": "^1.1", + "phpstan/phpstan-phpunit": "^1.3" + }, + "scripts": { + "analyse": "vendor/bin/phpstan analyse", + "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes" + }, + "support": { + "issues": "https://github.com/cslant/blog-core/issues" + }, + "extra": { + "laravel": { + "providers": [ + "CSlant\\BlogApi\\Providers\\BlogApiServiceProvider" + ] + } + }, + "config": { + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true + } + }, + "minimum-stability": "dev", + "prefer-stable": true +}