php-commerce/composer.json
Snider a774f4e285 refactor: migrate namespace from Core\Commerce to Core\Mod\Commerce
Align commerce module with the monorepo module structure by updating
all namespaces to use the Core\Mod\Commerce convention. This change
supports the recent monorepo separation and ensures consistency with
other modules.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 16:23:12 +00:00

51 lines
970 B
JSON

{
"name": "host-uk/core-commerce",
"description": "Commerce, subscriptions and payments for Laravel",
"keywords": [
"laravel",
"commerce",
"stripe",
"subscriptions",
"payments"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"host-uk/core": "dev-main"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Core\\Mod\\Commerce\\": "",
"Core\\Service\\Commerce\\": "Service/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mod\\Commerce\\Tests\\": "Tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Mod\\Commerce\\Boot"
]
}
},
"scripts": {
"lint": "pint",
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}