mirror of
https://github.com/silverstripe/silverstripe-textextraction
synced 2024-10-22 11:06:00 +02:00
Compare commits
8 Commits
4.0.0-beta
...
3
Author | SHA1 | Date | |
---|---|---|---|
|
e04501cb52 | ||
|
821d2858f3 | ||
|
de215d63f6 | ||
|
2a260607ec | ||
|
6a92eb58e2 | ||
|
87869e94a6 | ||
|
61f443d49c | ||
|
8f2e1d9b75 |
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -4,13 +4,8 @@ on:
|
|||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# Every Saturday at 12:20pm UTC
|
|
||||||
schedule:
|
|
||||||
- cron: '20 12 * * 6'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: CI
|
name: CI
|
||||||
# Only run cron on the silverstripe account
|
|
||||||
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
|
||||||
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
||||||
|
16
.github/workflows/dispatch-ci.yml
vendored
Normal file
16
.github/workflows/dispatch-ci.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: Dispatch CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
# At 12:20 PM UTC, only on Saturday and Sunday
|
||||||
|
schedule:
|
||||||
|
- cron: '20 12 * * 6,0'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dispatch-ci:
|
||||||
|
name: Dispatch CI
|
||||||
|
# Only run cron on the silverstripe account
|
||||||
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Dispatch CI
|
||||||
|
uses: silverstripe/gha-dispatch-ci@v1
|
14
.upgrade.yml
Normal file
14
.upgrade.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
mappings:
|
||||||
|
FileTextExtractable: SilverStripe\TextExtraction\Extension\FileTextExtractable
|
||||||
|
FileTextCache: SilverStripe\TextExtraction\Cache\FileTextCache
|
||||||
|
FileTextCache_Cache: SilverStripe\TextExtraction\Cache\FileTextCache\Cache
|
||||||
|
FileTextCache_Database: SilverStripe\TextExtraction\Cache\FileTextCache\Database
|
||||||
|
FileTextExtractor: SilverStripe\TextExtraction\Extractor\FileTextExtractor
|
||||||
|
FileTextExtractor_Exception: SilverStripe\TextExtraction\Extractor\FileTextExtractor\Exception
|
||||||
|
HTMLTextExtractor: SilverStripe\TextExtraction\Extractor\HTMLTextExtractor
|
||||||
|
PDFTextExtractor: SilverStripe\TextExtraction\Extractor\PDFTextExtractor
|
||||||
|
SolrCellTextExtractor: SilverStripe\TextExtraction\Extractor\SolrCellTextExtractor
|
||||||
|
TikaServerTextExtractor: SilverStripe\TextExtraction\Extractor\TikaServerTextExtractor
|
||||||
|
TikaTextExtractor: SilverStripe\TextExtraction\Extractor\TikaTextExtractor
|
||||||
|
TikaRestClient: SilverStripe\TextExtraction\Rest\TikaRestClient
|
||||||
|
|
@ -20,11 +20,11 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1",
|
"php": "^7.4 || ^8.0",
|
||||||
"silverstripe/framework": "^5",
|
"silverstripe/framework": "^4.10",
|
||||||
"silverstripe/assets": "^2",
|
"silverstripe/assets": "^1",
|
||||||
"silverstripe/versioned": "^2",
|
"silverstripe/versioned": "^1",
|
||||||
"guzzlehttp/guzzle": "^7.5"
|
"guzzlehttp/guzzle": "^6.3 || ^7.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"squizlabs/php_codesniffer": "^3",
|
"squizlabs/php_codesniffer": "^3",
|
||||||
|
Loading…
Reference in New Issue
Block a user