Compare commits

...

18 Commits

Author SHA1 Message Date
Guy Sartorelli e04501cb52
Merge branch '3.5' into 3 2023-04-26 12:49:10 +12:00
Maxime Rainville 821d2858f3
Merge pull request #81 from creative-commoners/pulls/3.5/fix-constraints
MNT Revert erroneous dependency changes
2023-03-28 17:06:30 +13:00
Guy Sartorelli de215d63f6
MNT Revert erroneous dependency changes 2023-03-28 14:55:48 +13:00
Maxime Rainville 2a260607ec
Merge pull request #80 from creative-commoners/pulls/3/dispatch-ci
MNT Use gha-dispatch-ci
2023-03-23 14:19:29 +13:00
Steve Boyd 6a92eb58e2 MNT Use gha-dispatch-ci 2023-03-21 13:42:30 +13:00
Guy Sartorelli 87869e94a6
MNT Update development dependencies 2023-03-10 16:38:07 +13:00
Guy Sartorelli 61f443d49c
MNT Update release dependencies 2023-03-10 16:38:04 +13:00
Guy Sartorelli 8f2e1d9b75
MNT Update development dependencies 2023-03-10 12:21:32 +13:00
Sabina Talipova a281114ed2
Merge pull request #77 from creative-commoners/pulls/3/stop-using-depr
API Stop using deprecated API
2022-12-05 16:44:21 +13:00
Steve Boyd 1a0cd6d6a6 API Stop using deprecated API 2022-11-28 19:20:01 +13:00
Steve Boyd 3bfa989a7e Merge branch '3.4' into 3 2022-08-02 19:01:21 +12:00
Steve Boyd 46b7f51040 Merge branch '3.3' into 3.4 2022-08-02 19:01:18 +12:00
Guy Sartorelli 041296bda2
Merge pull request #76 from creative-commoners/pulls/3.3/standardise-modules
MNT Standardise modules
2022-08-02 15:49:18 +12:00
Steve Boyd e8997870c5 MNT Standardise modules 2022-08-01 16:23:36 +12:00
Steve Boyd e8061724c5 Merge branch '3.4' into 3 2022-07-25 09:43:40 +12:00
Steve Boyd db8a36fa3e Merge branch '3.3' into 3.4 2022-07-25 09:43:36 +12:00
Guy Sartorelli 04ff0c6084
Merge pull request #74 from creative-commoners/pulls/3.3/module-standards
MNT Use GitHub Actions CI
2022-07-15 17:10:18 +12:00
Steve Boyd e5bf4f1322 MNT Use GitHub Actions CI 2022-07-05 19:08:18 +12:00
9 changed files with 52 additions and 26 deletions

11
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
name: CI
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1

16
.github/workflows/dispatch-ci.yml vendored Normal file
View 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

17
.github/workflows/keepalive.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Keepalive
on:
workflow_dispatch:
# The 4th of every month at 10:50am UTC
schedule:
- cron: '50 10 4 * *'
jobs:
keepalive:
name: Keepalive
# 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: Keepalive
uses: silverstripe/gha-keepalive@v1

View File

@ -1,13 +0,0 @@
inherit: true
checks:
php: true
build:
nodes:
analysis:
tests:
override: [php-scrutinizer-run]
filter:
paths: [src/*, tests/*]

View File

@ -1,4 +0,0 @@
version: ~> 1.0
import:
- silverstripe/silverstripe-travis-shared:config/provision/standard-jobs-range.yml

View File

@ -1,9 +1,7 @@
# Text extraction module
[![Build Status](https://api.travis-ci.com/silverstripe/silverstripe-textextraction.svg?branch=3)](https://travis-ci.com/silverstripe/silverstripe-textextraction)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/silverstripe/silverstripe-textextraction/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/silverstripe/silverstripe-textextraction/?branch=master)
[![codecov](https://codecov.io/gh/silverstripe/silverstripe-textextraction/branch/master/graph/badge.svg)](https://codecov.io/gh/silverstripe/silverstripe-textextraction)
[![SilverStripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)
[![CI](https://github.com/silverstripe/silverstripe-textextraction/actions/workflows/ci.yml/badge.svg)](https://github.com/silverstripe/silverstripe-textextraction/actions/workflows/ci.yml)
[![Silverstripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)
Provides a text extraction API for file content, that can hook into different extractor
engines based on availability and the parsed file format. The output returned is always a string of the file content.
@ -24,7 +22,7 @@ The module supports text extraction on the following file formats:
## Requirements
* SilverStripe ^4.0
* Silverstripe ^4.0
* (optional) [XPDF](http://www.foolabs.com/xpdf/) (`pdftotext` utility)
* (optional) [Apache Solr with ExtracingRequestHandler](http://wiki.apache.org/solr/ExtractingRequestHandler)
* (optional) [Apache Tika](http://tika.apache.org/)
@ -54,8 +52,8 @@ If the issue does look like a new bug:
- Create a new issue
- Describe the steps required to reproduce your issue, and the expected outcome. Unit tests, screenshots
and screencasts can help here.
- Describe your environment as detailed as possible: SilverStripe version, Browser, PHP version,
Operating System, any installed SilverStripe modules.
- Describe your environment as detailed as possible: Silverstripe version, Browser, PHP version,
Operating System, any installed Silverstripe modules.
Please report security issues to security@silverstripe.org directly. Please don't file security issues in the bugtracker.

View File

@ -42,4 +42,4 @@
"extra": [],
"minimum-stability": "dev",
"prefer-stable": true
}
}

View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Default">

View File

@ -108,7 +108,7 @@ class TikaRestClient extends Client
])
);
return $this->mimes = Convert::json2array($response->getBody());
return $this->mimes = json_decode($response->getBody(), true);
}
/**