Skip to content

Commit e2a7e23

Browse files
authored
Merge pull request #7 from strata/0.8.1
Update install docs
2 parents a0bf591 + b4b0dd5 commit e2a7e23

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
php-versions: ['7.4', '8.0']
17+
php-versions: ['7.4']
1818

1919
runs-on: ubuntu-latest
2020

@@ -39,7 +39,7 @@ jobs:
3939
run: composer validate
4040

4141
- name: Install dependencies
42-
run: composer install --prefer-dist --no-progress --no-suggest
42+
run: composer install --prefer-dist --no-progress
4343

4444
- name: Code lint PHP files
4545
run: ./vendor/bin/phplint

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ Planned for the future:
2020
* Transform data (e.g. convert source category to match local category name)
2121
* Download data via local, FTP, S3 filesystem (via Flysystem)
2222

23+
## Status
24+
Please note this software is in development, usage may change before the 1.0 release.
25+
26+
## Requirements
27+
28+
* PHP 7.4+
29+
* [Composer](https://getcomposer.org/)
30+
31+
## Installation
32+
33+
Install via Composer:
34+
35+
```
36+
composer require strata/data:^0.8
37+
```
38+
2339
## Documentation
2440

2541
See [docs](docs/README.md) or the docs site at: [https://docs.strata.dev/data/](https://docs.strata.dev/data/)

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,8 @@
6262
"fix": "Fix PHP code so it meets coding standards",
6363
"unit": "Run PHPUnit tests",
6464
"test": "Run all tests (phplint, phpcs, phpunit)"
65+
},
66+
"config": {
67+
"allow-plugins": false
6568
}
6669
}

docs/usage/installation.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# Installation
22

3+
Install via Composer:
4+
5+
```
6+
composer require strata/data:^0.8
7+
```

0 commit comments

Comments
 (0)