Skip to content

Commit

Permalink
chore: update composer.json to add branch-alias, minimum-stability, a…
Browse files Browse the repository at this point in the history
…nd prefer-stable settings

Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Mar 4, 2025
1 parent d55140a commit f327ed0
Showing 1 changed file with 75 additions and 70 deletions.
145 changes: 75 additions & 70 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,72 +1,77 @@
{
"name": "tastyigniter/ti-ext-local",
"type": "tastyigniter-package",
"description": "This extension allows your customers find and view menu items of their nearest location.",
"license": "MIT",
"authors": [
{
"name": "Sam Poyigi",
"email": "[email protected]"
}
],
"require": {
"tastyigniter/core": "^v4.0",
"tastyigniter/ti-ext-automation": "^v4.0",
"tastyigniter/ti-ext-cart": "^v4.0",
"tastyigniter/ti-ext-reservation": "^v4.0"
},
"require-dev": {
"igniterlabs/ti-ext-importexport": "v4.0",
"larastan/larastan": "^2.4.0",
"laravel/pint": "^1.2",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^1.2",
"sampoyigi/testbench": "^1.0"
},
"suggest": {
"igniterlabs/ti-ext-importexport": "For importing and exporting menu items."
},
"autoload": {
"psr-4": {
"Igniter\\Local\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\Local\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"code": "igniter.local",
"name": "Local",
"icon": {
"class": "fa fa-map-marker",
"backgroundColor": "#CD4341",
"color": "#fff"
},
"homepage": "https://tastyigniter.com/marketplace/item/igniter-local"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
"type-coverage": "vendor/bin/pest --type-coverage --min=100",
"format": "vendor/bin/pint",
"refactor": "vendor/bin/rector process --dry-run",
"static": "vendor/bin/phpstan analyse --ansi --memory-limit 1056M",
"test-suite": [
"@refactor",
"@static",
"@test-coverage"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
"name": "tastyigniter/ti-ext-local",
"type": "tastyigniter-package",
"description": "This extension allows your customers find and view menu items of their nearest location.",
"license": "MIT",
"authors": [
{
"name": "Sam Poyigi",
"email": "[email protected]"
}
],
"require": {
"tastyigniter/core": "^v4.0",
"tastyigniter/ti-ext-automation": "^v4.0",
"tastyigniter/ti-ext-cart": "^v4.0",
"tastyigniter/ti-ext-reservation": "^v4.0"
},
"require-dev": {
"igniterlabs/ti-ext-importexport": "v4.0",
"larastan/larastan": "^2.4.0",
"laravel/pint": "^1.2",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^1.2",
"sampoyigi/testbench": "^1.0"
},
"autoload": {
"psr-4": {
"Igniter\\Local\\": "src/"
}
},
"sort-packages": true
}
}
"autoload-dev": {
"psr-4": {
"Igniter\\Local\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"code": "igniter.local",
"name": "Local",
"icon": {
"class": "fa fa-map-marker",
"backgroundColor": "#CD4341",
"color": "#fff"
},
"homepage": "https://tastyigniter.com/marketplace/item/igniter-local"
},
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
"type-coverage": "vendor/bin/pest --type-coverage --min=100",
"format": "vendor/bin/pint",
"refactor": "vendor/bin/rector process --dry-run",
"static": "vendor/bin/phpstan analyse --ansi --memory-limit 1056M",
"test-suite": [
"@refactor",
"@static",
"@test-coverage"
]
},
"suggest": {
"igniterlabs/ti-ext-importexport": "For importing and exporting menu items."
}
}

0 comments on commit f327ed0

Please sign in to comment.