Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
Merge pull request #38 from apility/release/1.0.8
Browse files Browse the repository at this point in the history
Release/1.0.8
  • Loading branch information
thomas-alrek authored Jun 5, 2019
2 parents 8c9035f + fc625cb commit c758df3
Show file tree
Hide file tree
Showing 106 changed files with 4,293 additions and 30 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2.1

orbs:
netflex: netflex/[email protected]

jobs:
tests:
docker:
- image: circleci/php:7.2
steps:
- netflex/pull
- netflex/composer
- run:
name: PHPUnit
command: cd ~/project && composer run-script tests

workflows:
version: 2
deployment:
jobs:
- tests
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@
/vendor

### macOS ###

.DS_Store

### IDE ###
.idea

### PHP Unit ###
.phpunit.result.cache
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

The Netflex SDK is a framework for constructing website using the Netflex Content API.

[![License: MIT](https://img.shields.io/github/license/apility/netflex-sdk.svg)](https://opensource.org/licenses/MIT)
[![CircleCI](https://circleci.com/gh/apility/netflex-sdk.svg?style=shield&circle-token=40188cfe2c6ab765c48f112c427785f44f3745f5)](https://circleci.com/gh/apility/netflex-sdk)
[![Docs](https://img.shields.io/badge/docs-docs.netflex.dev-blue.svg)](https://docs.netflex.dev/docs/1.0)
[![Version](https://img.shields.io/github/tag/apility/netflex-sdk.svg?label=version)](https://github.com/apility/netflex-sdk/releases/latest)
[![License: MIT](https://img.shields.io/github/license/apility/netflex-sdk.svg)](https://opensource.org/licenses/MIT)
[![Contributors](https://img.shields.io/github/contributors/apility/netflex-sdk.svg?color=green)](https://github.com/apility/netflex-sdk/graphs/contributors)
[![Docs](https://img.shields.io/badge/docs-docs.netflex.dev-blue.svg)](https://docs.netflex.dev/docs/1.0)
![Downlaods](https://img.shields.io/packagist/dm/apility/netflex-sdk.svg)
![Downloads](https://img.shields.io/packagist/dm/apility/netflex-sdk.svg)

![banner](https://d3lnipq2e3xuc0.cloudfront.net/media/o/1557406595/banner.png)

Expand All @@ -25,6 +26,12 @@ require_once(__DIR__ . '/../vendor/autoload.php');
require_once(Netflex\SDK::bootstrap);
```

## Running the test suite

```bash
composer run-script tests
```

<hr>

Copyright &copy; 2019 **[Apility AS](https://apility.no)**
29 changes: 28 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,24 @@
"name": "Olav Øyen",
"email": "[email protected]",
"homepage": "https://github.com/olavoyen",
"role": "Author"
},
{
"name": "Thomas Alrek",
"email": "[email protected]",
"homepage": "https://github.com/thomas-alrek",
"role": "Maintainer / Developer"
},
{
"name": "Cathrine Vaage",
"email": "[email protected]",
"homepage": "https://github.com/cathrinevaage",
"role": "Developer"
},
{
"name": "Tommy Stigen Olsen",
"email": "[email protected]",
"homepage": "https://github.com/tommysolsen",
"role": "Developer"
}
],
Expand All @@ -38,6 +56,15 @@
"guzzlehttp/guzzle": "^6.2",
"nesbot/carbon": "^1.21",
"phpfastcache/phpfastcache": "^7.0",
"php-console/php-console": "^3.1"
"php-console/php-console": "^3.1",
"ivopetkov/html5-dom-document-php": "^2.0",
"tightenco/collect": "^5.8"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"spatie/phpunit-snapshot-assertions": "^2.1"
},
"scripts": {
"tests": "vendor/bin/phpunit --testdox --colors=always"
}
}
Loading

0 comments on commit c758df3

Please sign in to comment.