Skip to content

Commit

Permalink
Updated to latest release, for PHP7.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
poef committed Mar 1, 2020
1 parent 8b96468 commit 5a0e8e0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Thanks for wanting to contribute. Here's a quick guide.
* Make sure you have a [GitHub account](https://github.com/signup/free)
* Submit a ticket for your issue, assuming one does not already exist.
* Clearly describe the issue including steps to reproduce when it is a bug.
* We're using http://waffle.io/ariadne-cms/arc-base to keep track of issues, you can too.
* We're using https://github.com/ariadne-cms/arc-base/issues to keep track of issues, you can too.
* Fork the repository on GitHub

## Making Changes
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ARC: Ariadne Component Library
[![Latest Unstable Version](https://poser.pugx.org/arc/arc/v/unstable.svg)](https://packagist.org/packages/arc/arc)
[![License](https://poser.pugx.org/arc/arc/license.svg)](https://packagist.org/packages/arc/arc)

A flexible component library for PHP 5.4+
-----------------------------------------
A flexible component library for PHP
------------------------------------

ARC is a set of components, build to be as simple as possible. Each component does just one thing and has a small and
simple API to learn. ARC uses static factory methods to simplify the API while using Dependency Injection. ARC is not a
Expand Down Expand Up @@ -52,4 +52,5 @@ and a HTTP client. Also includes a simple intrustion detection component to prev
- [`arc/html`](https://github.com/Ariadne-CMS/arc-html/): Parsing and writing HTML also made simple.
- [`arc/grants`](https://github.com/Ariadne-CMS/arc-grants/): Access control management in a tree structure, like a
filesystem.
- [`arc/prototype`](https://github.com/Ariadne-CMS/arc-prototype/): Experimental prototypical inheritance, like javascript.
- [`arc/prototype`](https://github.com/Ariadne-CMS/arc-prototype/): Prototypical inheritance for PHP, like javascript.
- [`arc/store`](https://github.com/Ariadne-CMS/arc-store/): Structured (hierarchical) object store, with a simple query DSL.
21 changes: 11 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@
}
],
"require": {
"php": ">=5.4",
"arc/base": "~2.1",
"arc/web": "~2.1",
"arc/xml": "~2.1",
"arc/html": "~1.0",
"arc/cache": "~1.2",
"arc/config": "~1.2",
"arc/grants": "~1.2",
"arc/events": "~1.2",
"arc/prototype": "~0.9"
"php": ">=7.2",
"arc/base": "~3.0",
"arc/web": "~3.0",
"arc/xml": "~3.0",
"arc/html": "~3.0",
"arc/cache": "~3.0",
"arc/config": "~3.0",
"arc/grants": "~3.0",
"arc/events": "~3.0",
"arc/prototype": "~3.0",
"arc/store": "~3.0"
}
}

0 comments on commit 5a0e8e0

Please sign in to comment.