Skip to content

Commit

Permalink
The migration file name is now static.
Browse files Browse the repository at this point in the history
  • Loading branch information
arhitov committed Apr 22, 2024
1 parent c4f4c57 commit c24fd3d
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 13 deletions.
27 changes: 21 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "arhitov/laravel-billing",
"description": "Billing module for laravel projects",
"version": "0.2.1",
"version": "0.2.2",
"type": "library",
"license": "MIT",
"keywords": [
Expand All @@ -23,7 +23,7 @@
"require": {
"php": "^8.2",
"arhitov/laravel-helpers": "^0.1",
"arhitov/laravel-package-helpers": "^0.1.2",
"arhitov/laravel-package-helpers": "^0.2.1",
"http-interop/http-factory-guzzle": "^1.2",
"laravel/framework": "^10",
"omnipay/common": "^3",
Expand Down Expand Up @@ -56,8 +56,18 @@
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"extra":{
"laravel":{
"providers":[
"Arhitov\\LaravelBilling\\Providers\\PackageServiceProvider"
]
}
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "RC",
"prefer-stable": true,
Expand All @@ -68,6 +78,14 @@
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"test": "@php vendor/bin/phpunit -c ./ --color",
"ci": [
"@clear",
"@prepare",
"@test"
],


"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
Expand All @@ -76,9 +94,6 @@
],
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/phpunit"
]
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c24fd3d

Please sign in to comment.