Skip to content

Commit

Permalink
Finish 1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlaefer committed Jul 18, 2020
2 parents d24f56c + a8e1f73 commit 35a9f92
Show file tree
Hide file tree
Showing 20 changed files with 585 additions and 398 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ env:

matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.2
- php: 7.3
- php: 7.4
env: PHPCS=1

# Notifications
Expand All @@ -32,7 +33,7 @@ install:
- composer install --prefer-dist --no-interaction
- |
if [ "$PLUGINS" = "1" ]; then
lib/vendor/bin/phing phile-plugins-install
lib/vendor/bin/phing phile-plugins-install
fi
script:
Expand All @@ -41,7 +42,7 @@ script:
lib/vendor/bin/phpunit;
- |
echo; echo "Running code formatting tests";
if [ "$PHPCS" = "1" ]; then
if [ "$PHPCS" = "1" ]; then
if ! find lib plugins/phile -name \*.php -not -path 'lib/vendor/*' -exec php -l "{}" \; > /tmp/errors 2>&1; then
grep -v \"No syntax errors detected in\" /tmp/errors;
exit 99;
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Release 1.11.1

Please see the [release notes](https://github.com/PhileCMS/Phile/releases/tag/1.11.1) or the [complete change-log](https://github.com/PhileCMS/Phile/compare/1.11.0...1.11.1) for more information

## Release 1.11.0

Please see the [release notes](https://github.com/PhileCMS/Phile/releases/tag/1.11.0) or the [complete change-log](https://github.com/PhileCMS/Phile/compare/1.10.0...1.11.0) for more information
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ Phile was forked from Pico when a few community members wanted to contribute mor

Requirements:

* PHP 7.1.0+
* PHP 7.2.0+
* a web-server

Download the release from <https://philecms.github.io/>, copy the files to your web-server and open the root directory in the browser.
Download the release from <https://philecms.github.io/>, copy the files to your web-server and open the root directory in the browser.

Or use composer and run it locally:

Expand All @@ -52,7 +52,7 @@ Phile can be extended with [a wide variety of plugins](https://philecms.github.i

Generally a plugin can always be installed manually: clone or download the plugin into `plugins/{vendor}/{pluginName}` folder. **Example**: [phileRss](https://github.com/PhileCMS/phileRSSFeed/) would be installed into `plugins/phile/rssFeed`.

Many plugins also allow composer installation:
Many plugins also allow composer installation:

```php
composer require phile/rss-feed
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phile-cms/phile",
"version": "1.11.0",
"version": "1.11.1",
"type": "project",
"description": "A file-based CMS with a swappable parser, template engine, cache and storage services, error handler, and meta parser.",
"keywords": ["cms", "markdown", "flat", "file", "twig", "plugins"],
Expand Down Expand Up @@ -39,10 +39,10 @@
}
},
"require": {
"php": ">=7.1.0",
"php": ">=7.2.0",
"phile-cms/plugin-installer-plugin": "^1.0",
"twig/twig": "^1.0 || ^2.0",
"michelf/php-markdown": ">=1.4",
"michelf/php-markdown": ">=1.9",
"phpfastcache/phpfastcache": "^6.0",
"filp/whoops": "^2.1",
"http-interop/http-factory": "^0.3.0",
Expand All @@ -55,7 +55,7 @@
},
"require-dev": {
"phing/phing": "^2.14",
"phpunit/phpunit": "^7.0",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.2"
}
}
Loading

0 comments on commit 35a9f92

Please sign in to comment.