php-commerce/composer.json
Snider c42e2f62c3
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 3s
chore: rename package to core/php-commerce
Aligns composer package name with forge repo path
(forge.lthn.ai/core/php-commerce). Part of host-uk/* → core/* migration.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-03 10:38:58 +00:00

59 lines
1.3 KiB
JSON

{
"name": "core/php-commerce",
"description": "Commerce, subscriptions and payments for Laravel",
"keywords": [
"laravel",
"commerce",
"stripe",
"subscriptions",
"payments"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"core/php-framework": "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/",
"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,
"repositories": [
{
"name": "core",
"type": "path",
"url": "../php-framework"
}
]
}