mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
MNT Run module-standardiser (#265)
This commit is contained in:
parent
5b214779a5
commit
b7c1f98d07
17
.github/workflows/update-js.yml
vendored
Normal file
17
.github/workflows/update-js.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Update JS
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
# Run on a schedule of once per quarter
|
||||||
|
schedule:
|
||||||
|
- cron: '55 23 1 */3 *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-js:
|
||||||
|
name: Update JS
|
||||||
|
# Only run cron on the colymba account
|
||||||
|
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Update JS
|
||||||
|
uses: silverstripe/gha-update-js@v1
|
10
.upgrade.yml
10
.upgrade.yml
@ -1,10 +0,0 @@
|
|||||||
mappings:
|
|
||||||
GridFieldBulkActionDeleteHandler: Colymba\BulkManager\BulkAction\DeleteHandler
|
|
||||||
GridFieldBulkActionEditHandler: Colymba\BulkManager\BulkAction\EditHandler
|
|
||||||
GridFieldBulkActionHandler: Colymba\BulkManager\BulkAction\Handler
|
|
||||||
GridFieldBulkActionUnlinkHandler: Colymba\BulkManager\BulkAction\UnlinkHandler
|
|
||||||
GridFieldBulkManager: Colymba\BulkManager\BulkManager
|
|
||||||
BulkUploadField: Colymba\BulkUpload\BulkUploadField
|
|
||||||
GridFieldBulkImageUpload: Colymba\BulkUpload\GridFieldBulkImageUpload
|
|
||||||
GridFieldBulkUpload: Colymba\BulkUpload\BulkUploader
|
|
||||||
GridFieldBulkUpload_Request: Colymba\BulkUpload\BulkUploadHandler
|
|
@ -3,7 +3,12 @@
|
|||||||
"type": "silverstripe-vendormodule",
|
"type": "silverstripe-vendormodule",
|
||||||
"description": "SilverStripe GridField component to upload images/files and edit records in bulk",
|
"description": "SilverStripe GridField component to upload images/files and edit records in bulk",
|
||||||
"homepage": "https://github.com/colymba/GridFieldBulkEditingTools",
|
"homepage": "https://github.com/colymba/GridFieldBulkEditingTools",
|
||||||
"keywords": ["silverstripe", "bulk upload", "image upload", "gridfield bulk upload"],
|
"keywords": [
|
||||||
|
"silverstripe",
|
||||||
|
"bulk upload",
|
||||||
|
"image upload",
|
||||||
|
"gridfield bulk upload"
|
||||||
|
],
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@ -34,5 +39,9 @@
|
|||||||
"Colymba\\BulkManager\\": "src/BulkManager/",
|
"Colymba\\BulkManager\\": "src/BulkManager/",
|
||||||
"Colymba\\BulkUpload\\": "src/BulkUploader/"
|
"Colymba\\BulkUpload\\": "src/BulkUploader/"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"silverstripe/standards": "^1",
|
||||||
|
"phpstan/extension-installer": "^1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3
phpstan.neon.dist
Normal file
3
phpstan.neon.dist
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
parameters:
|
||||||
|
paths:
|
||||||
|
- src
|
Loading…
Reference in New Issue
Block a user