Skip to content

Commit dcdc122

Browse files
committed
Add Dependencies
1 parent 9e43b85 commit dcdc122

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.github/workflows/phpunit.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ jobs:
2222
- "7.4"
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- run: composer install
2727
- run: ./vendor/bin/phpunit
2828
- run: ./vendor/bin/psalm
2929

3030
Documentation:
31-
runs-on: 'ubuntu-latest'
32-
needs: Build
3331
if: github.ref == 'refs/heads/master'
34-
env:
35-
DOC_GITHUB_TOKEN: '${{ secrets.DOC_TOKEN }}'
36-
steps:
37-
- uses: actions/checkout@v3
38-
- run: curl https://opensource.byjg.com/add-doc.sh | bash /dev/stdin php anydataset
32+
needs: Build
33+
uses: byjg/byjg.github.io/.github/workflows/add-doc.yaml@master
34+
with:
35+
folder: php
36+
project: ${{ github.event.repository.name }}
37+
secrets: inherit
38+

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# AnyDataset
22

33
[![Opensource ByJG](https://img.shields.io/badge/opensource-byjg-success.svg)](http://opensource.byjg.com)
4-
[![Build Status](https://github.com/byjg/anydataset/actions/workflows/phpunit.yml/badge.svg?branch=master)](https://github.com/byjg/anydataset/actions/workflows/phpunit.yml)
4+
[![Build Status](https://github.com/byjg/php-anydataset/actions/workflows/phpunit.yml/badge.svg?branch=master)](https://github.com/byjg/php-anydataset/actions/workflows/phpunit.yml)
55
[![Opensource ByJG](https://img.shields.io/badge/opensource-byjg-success.svg)](http://opensource.byjg.com)
6-
[![GitHub source](https://img.shields.io/badge/Github-source-informational?logo=github)](https://github.com/byjg/anydataset/)
6+
[![GitHub source](https://img.shields.io/badge/Github-source-informational?logo=github)](https://github.com/byjg/php-anydataset/)
77
[![GitHub license](https://img.shields.io/github/license/byjg/anydataset.svg)](https://opensource.byjg.com/opensource/licensing.html)
8-
[![GitHub release](https://img.shields.io/github/release/byjg/anydataset.svg)](https://github.com/byjg/anydataset/releases/)
9-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/byjg/anydataset/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/byjg/anydataset/?branch=master)
10-
[![Code Coverage](https://scrutinizer-ci.com/g/byjg/anydataset/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/byjg/anydataset/?branch=master)
8+
[![GitHub release](https://img.shields.io/github/release/byjg/anydataset.svg)](https://github.com/byjg/php-anydataset/releases/)
9+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/byjg/php-anydataset/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/byjg/php-anydataset/?branch=master)
10+
[![Code Coverage](https://scrutinizer-ci.com/g/byjg/php-anydataset/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/byjg/php-anydataset/?branch=master)
1111

1212
Anydataset Core Module. Anydataset is an agnostic data source abstraction layer in PHP.
1313

@@ -21,18 +21,18 @@ Anydataset Core Module. Anydataset is an agnostic data source abstraction layer
2121

2222
{:.table}
2323

24-
| Object | Data Source | Read | Write | Reference |
25-
| ---------------------- | --------------------- |:----:|:-----:| ----------------------- |
26-
| DbDriverInterface | Relational DB | yes | yes | [Github](https://github.com/byjg/anydataset-db) |
27-
| AnyDataSet | Anydataset | yes | yes | [Github](https://github.com/byjg/anydataset) |
28-
| ArrayDataSet | Array | yes | no | [Github](https://github.com/byjg/anydataset-array) |
29-
| TextFileDataSet | Delimited Fields | yes | no | [Github](https://github.com/byjg/anydataset-text) |
30-
| FixedTextFileDataSet | Fixed Size fields | yes | no | [Github](https://github.com/byjg/anydataset-text) |
31-
| XmlDataSet | Xml | yes | no | [Github](https://github.com/byjg/anydataset-xml) |
32-
| JSONDataSet | Json | yes | no | [Github](https://github.com/byjg/anydataset-json) |
33-
| SparQLDataSet | SparQl Repositories | yes | no | [Github](https://github.com/byjg/anydataset-sparql) |
34-
| NoSqlDocumentInterface | NoSql Document Based | yes | yes | [Github](https://github.com/byjg/anydataset-nosql) |
35-
| KeyValueInterface | NoSql Key/Value Based | yes | yes | [Github](https://github.com/byjg/anydataset-nosql) |
24+
| Object | Data Source | Read | Write | Reference |
25+
|------------------------|-----------------------|:----:|:-----:|-----------------------------------------------------|
26+
| DbDriverInterface | Relational DB | yes | yes | [Github](https://github.com/byjg/anydataset-db) |
27+
| AnyDataSet | Anydataset | yes | yes | [Github](https://github.com/byjg/anydataset) |
28+
| ArrayDataSet | Array | yes | no | [Github](https://github.com/byjg/anydataset-array) |
29+
| TextFileDataSet | Delimited Fields | yes | no | [Github](https://github.com/byjg/anydataset-text) |
30+
| FixedTextFileDataSet | Fixed Size fields | yes | no | [Github](https://github.com/byjg/anydataset-text) |
31+
| XmlDataSet | Xml | yes | no | [Github](https://github.com/byjg/anydataset-xml) |
32+
| JSONDataSet | Json | yes | no | [Github](https://github.com/byjg/anydataset-json) |
33+
| SparQLDataSet | SparQl Repositories | yes | no | [Github](https://github.com/byjg/anydataset-sparql) |
34+
| NoSqlDocumentInterface | NoSql Document Based | yes | yes | [Github](https://github.com/byjg/anydataset-nosql) |
35+
| KeyValueInterface | NoSql Key/Value Based | yes | yes | [Github](https://github.com/byjg/anydataset-nosql) |
3636

3737
## Examples
3838

@@ -183,7 +183,7 @@ $formatter->saveToFile("/path/to/file.xml"); // Save the XML Text to a file.
183183
## Install
184184

185185
```bash
186-
composer require "byjg/anydataset=5.0.*"
186+
composer require "byjg/anydataset"
187187
```
188188

189189
## Running Unit tests

0 commit comments

Comments
 (0)