Compare commits

...

4 Commits

Author SHA1 Message Date
Ronald A. Richardson
dd65ee619b upgraded to v0.3.4 2023-12-27 12:01:39 +08:00
Ronald A. Richardson
e790a0e123 upgraded to v0.3.3 2023-12-27 11:07:33 +08:00
Ronald A. Richardson
723e3ca3d1 fix composer file 2023-11-27 10:23:44 +08:00
Ronald A. Richardson
4eb706d33e upgraded to v0.3.1 / cloud version 2023-11-27 10:19:56 +08:00
5 changed files with 548 additions and 245 deletions

View File

@@ -12,6 +12,7 @@
"fleetbase/core-api": "^1.3.5",
"fleetbase/fleetops-api": "^0.3.7",
"fleetbase/storefront-api": "^0.2.5",
"fleetbase/billing-api": "^0.0.5",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.75",
@@ -32,6 +33,12 @@
"nunomaduro/collision": "^5.10",
"phpunit/phpunit": "^9.5.10"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:fleetbase/billing.git"
}
],
"autoload": {
"psr-4": {
"App\\": "app/",

344
api/composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "9b24e0c22870d1e9e36c0cbdaee254e3",
"content-hash": "e4c8c4c10e5fc94745dfef07cc8568e2",
"packages": [
{
"name": "aloha/twilio",
@@ -2069,6 +2069,116 @@
},
"time": "2023-12-01T16:26:39+00:00"
},
{
"name": "fleetbase/billing-api",
"version": "0.0.5",
"source": {
"type": "git",
"url": "git@github.com:fleetbase/billing.git",
"reference": "948bf27b86bf51bc6056d958b05cc4fb64ba63a3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fleetbase/billing/zipball/948bf27b86bf51bc6056d958b05cc4fb64ba63a3",
"reference": "948bf27b86bf51bc6056d958b05cc4fb64ba63a3",
"shasum": ""
},
"require": {
"fleetbase/core-api": "^1.3.2",
"laravel/cashier": "^13.17",
"php": "^7.4|^8.0",
"php-http/guzzle7-adapter": "^1.0",
"psr/http-factory-implementation": "*",
"stripe/stripe-php": "^9.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34.1",
"nunomaduro/collision": "^5.11.0|^6.4.0",
"pestphp/pest": "^1.22.6",
"phpstan/phpstan": "^1.10.38",
"symfony/var-dumper": "^5.4.29"
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"Fleetbase\\Billing\\Providers\\BillingServiceProvider"
]
},
"fleetbase": {
"sandbox-migrations": false
},
"fleetbase/billing-api": {
"excludes": [
"addon",
"app",
"assets",
"config",
"tests",
"vendor"
]
}
},
"autoload": {
"psr-4": {
"Fleetbase\\Billing\\": "server/src/",
"Fleetbase\\Billing\\Seeds\\": "server/seeds/"
}
},
"autoload-dev": {
"psr-4": {
"Fleetbase\\Billing\\Tests\\": "server/tests/"
}
},
"scripts": {
"lint": [
"php-cs-fixer fix -v"
],
"test:lint": [
"php-cs-fixer fix -v --dry-run"
],
"test:types": [
"phpstan analyse --ansi --memory-limit=0"
],
"test:unit": [
"pest --colors=always"
],
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"license": [
"MIT"
],
"authors": [
{
"name": "Fleetbase Pte Ltd.",
"email": "hello@fleetbase.io"
},
{
"name": "Ronald A. Richardson",
"email": "ron@fleetbase.io"
}
],
"description": "Multi-Tenant Billing and Subscriptions Extension for Fleetbase",
"keywords": [
"billing",
"billing system",
"fleetbase",
"fleetbase-extension",
"revenue engine",
"revenue generator",
"stripe",
"stripe api"
],
"support": {
"source": "https://github.com/fleetbase/billing/tree/v0.0.5",
"issues": "https://github.com/fleetbase/billing/issues"
},
"time": "2023-11-17T09:01:33+00:00"
},
{
"name": "fleetbase/core-api",
"version": "1.3.5",
@@ -4433,6 +4543,90 @@
},
"time": "2023-02-21T21:35:58+00:00"
},
{
"name": "laravel/cashier",
"version": "v13.17.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/cashier-stripe.git",
"reference": "cae3a62e1819a0429ead6567ee26c049bf0c2677"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/cashier-stripe/zipball/cae3a62e1819a0429ead6567ee26c049bf0c2677",
"reference": "cae3a62e1819a0429ead6567ee26c049bf0c2677",
"shasum": ""
},
"require": {
"dompdf/dompdf": "^1.2.1|^2.0",
"ext-json": "*",
"illuminate/console": "^8.37|^9.0|^10.0",
"illuminate/contracts": "^8.37|^9.0|^10.0",
"illuminate/database": "^8.37|^9.0|^10.0",
"illuminate/http": "^8.37|^9.0|^10.0",
"illuminate/log": "^8.37|^9.0|^10.0",
"illuminate/notifications": "^8.37|^9.0|^10.0",
"illuminate/routing": "^8.37|^9.0|^10.0",
"illuminate/support": "^8.37|^9.0|^10.0",
"illuminate/view": "^8.37|^9.0|^10.0",
"moneyphp/money": "^3.2|^4.0",
"nesbot/carbon": "^2.0",
"php": "^7.3|^8.0",
"stripe/stripe-php": "^7.39|^8.0|^9.0",
"symfony/http-kernel": "^5.0|^6.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "13.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Cashier\\CashierServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Laravel\\Cashier\\": "src/",
"Laravel\\Cashier\\Database\\Factories\\": "database/factories/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "Dries Vints",
"email": "dries@laravel.com"
}
],
"description": "Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.",
"keywords": [
"billing",
"laravel",
"stripe"
],
"support": {
"issues": "https://github.com/laravel/cashier/issues",
"source": "https://github.com/laravel/cashier"
},
"time": "2023-03-01T09:33:20+00:00"
},
{
"name": "laravel/framework",
"version": "v8.83.27",
@@ -9895,6 +10089,67 @@
},
"time": "2022-11-25T16:15:06+00:00"
},
{
"name": "stripe/stripe-php",
"version": "v9.9.0",
"source": {
"type": "git",
"url": "https://github.com/stripe/stripe-php.git",
"reference": "479b5c2136fde0debb93d290ceaf20dd161c358f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/stripe/stripe-php/zipball/479b5c2136fde0debb93d290ceaf20dd161c358f",
"reference": "479b5c2136fde0debb93d290ceaf20dd161c358f",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"php": ">=5.6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.5.0",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^5.7 || ^9.0",
"squizlabs/php_codesniffer": "^3.3"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
"Stripe\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Stripe and contributors",
"homepage": "https://github.com/stripe/stripe-php/contributors"
}
],
"description": "Stripe PHP Library",
"homepage": "https://stripe.com/",
"keywords": [
"api",
"payment processing",
"stripe"
],
"support": {
"issues": "https://github.com/stripe/stripe-php/issues",
"source": "https://github.com/stripe/stripe-php/tree/v9.9.0"
},
"time": "2022-11-08T20:25:52+00:00"
},
{
"name": "swiftmailer/swiftmailer",
"version": "v6.3.0",
@@ -11264,6 +11519,93 @@
],
"time": "2023-01-26T09:26:14+00:00"
},
{
"name": "symfony/polyfill-intl-icu",
"version": "v1.28.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-icu.git",
"reference": "e46b4da57951a16053cd751f63f4a24292788157"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157",
"reference": "e46b4da57951a16053cd751f63f4a24292788157",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"suggest": {
"ext-intl": "For best performance and support of other locales than \"en\""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.28-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Intl\\Icu\\": ""
},
"classmap": [
"Resources/stubs"
],
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for intl's ICU-related data and classes",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"icu",
"intl",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2023-03-21T17:27:24+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
"version": "v1.28.0",

View File

@@ -45,6 +45,31 @@ Router.map(function () {
this.route('notifications');
this.route('virtual', { path: '/:slug/:view' });
});
this.mount('@fleetbase/billing-engine', {
as: 'billing',
path: 'billing'
});
this.mount('@fleetbase/dev-engine', {
as: 'developers',
path: 'developers'
});
this.mount('@fleetbase/fleetops-engine', {
as: 'fleet-ops',
path: 'fleet-ops'
});
this.mount('@fleetbase/iam-engine', {
as: 'iam',
path: 'iam'
});
this.mount('@fleetbase/storefront-engine', {
as: 'storefront',
path: 'storefront'
});
});
this.route('install');
});

View File

@@ -33,6 +33,7 @@
"@fleetbase/fleetops-data": "^0.1.6",
"@fleetbase/dev-engine": "^0.2.0",
"@fleetbase/iam-engine": "^0.0.8",
"@fleetbase/billing-engine": "^0.0.5",
"@fleetbase/leaflet-routing-machine": "^3.2.16",
"@ember/legacy-built-in-components": "^0.4.1",
"@fortawesome/ember-fontawesome": "^0.4.1",

416
console/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff