Skip to content

Commit

Permalink
feat: update composer to add cslant blog api package #1
Browse files Browse the repository at this point in the history
  • Loading branch information
dao quang huy committed Jul 20, 2024
1 parent 6fbae8d commit c5158ce
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"homepage": "https://tanhongit.com",
"role": "Developer"
},
{
"name": "Xuan Thinh",
"email": "[email protected]",
"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
}

0 comments on commit c5158ce

Please sign in to comment.