-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update composer.json to add branch-alias, minimum-stability, a…
…nd prefer-stable settings Signed-off-by: Sam Poyigi <[email protected]>
- Loading branch information
Showing
1 changed file
with
75 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
} | ||
} |