Skip to content

Commit

Permalink
Add reservation extension as composer dep
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Jan 14, 2024
1 parent f1e1d20 commit c15b989
Showing 1 changed file with 57 additions and 56 deletions.
113 changes: 57 additions & 56 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,59 @@
{
"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-dev": {
"laravel/pint": "^1.2",
"nunomaduro/larastan": "^2.4.0",
"orchestra/testbench": "^8.5",
"pestphp/pest-plugin-laravel": "^2.0",
"tastyigniter/core": "dev-master",
"tastyigniter/ti-ext-automation": "v4.x-dev as 4.0",
"tastyigniter/ti-ext-cart": "v4.x-dev as 4.0",
"igniterlabs/ti-ext-importexport": "v4.x-dev as 4.0"
},
"autoload": {
"psr-4": {
"Igniter\\Local\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\Local\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"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",
"format": "vendor/bin/pint",
"static": "vendor/bin/phpstan analyse --ansi --memory-limit 1056M"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"minimum-stability": "dev"
"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-dev": {
"laravel/pint": "^1.2",
"nunomaduro/larastan": "^2.4.0",
"orchestra/testbench": "^8.5",
"pestphp/pest-plugin-laravel": "^2.0",
"tastyigniter/core": "dev-master",
"tastyigniter/ti-ext-automation": "v4.x-dev as 4.0",
"tastyigniter/ti-ext-cart": "v4.x-dev as 4.0",
"tastyigniter/ti-ext-reservation": "v4.x-dev as 4.0",
"igniterlabs/ti-ext-importexport": "v4.x-dev as 4.0"
},
"autoload": {
"psr-4": {
"Igniter\\Local\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\Local\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"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",
"format": "vendor/bin/pint",
"static": "vendor/bin/phpstan analyse --ansi --memory-limit 1056M"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"minimum-stability": "dev"
}

0 comments on commit c15b989

Please sign in to comment.