1.0.0.rc1 update
This commit is contained in:
10
README.md
10
README.md
@@ -1,8 +1,6 @@
|
|||||||
# mChat-Extension
|
# mChat Extension for phpBB 3.1
|
||||||
phpBB 3.1.x mChat Extension with board3 portal edits
|
|
||||||
|
|
||||||
[](https://travis-ci.org/talonos/Mchat-Extension-board3)
|
|
||||||
|
|
||||||
|
[](https://travis-ci.org/dmzx/mChat-Extension)
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
@@ -11,12 +9,12 @@ phpBB 3.1.x mChat Extension with board3 portal edits
|
|||||||
3. In the `ext` directory of your phpBB board, create a new directory named `dmzx` (if it does not already exist).
|
3. In the `ext` directory of your phpBB board, create a new directory named `dmzx` (if it does not already exist).
|
||||||
4. Copy the `mchat` folder to `/ext/dmzx/` (if done correctly, you'll have the main extension class at (your forum root)/ext/dmzx/mchat/composer.json).
|
4. Copy the `mchat` folder to `/ext/dmzx/` (if done correctly, you'll have the main extension class at (your forum root)/ext/dmzx/mchat/composer.json).
|
||||||
5. Navigate in the ACP to `Customise -> Manage extensions`.
|
5. Navigate in the ACP to `Customise -> Manage extensions`.
|
||||||
6. Look for `mChat Extension` under the Disabled Extensions list, and click its `Enable` link.
|
6. Look for `mChat Extension for phpBB 3.1` under the Disabled Extensions list, and click its `Enable` link.
|
||||||
|
|
||||||
## Uninstall
|
## Uninstall
|
||||||
|
|
||||||
1. Navigate in the ACP to `Customise -> Extension Management -> Extensions`.
|
1. Navigate in the ACP to `Customise -> Extension Management -> Extensions`.
|
||||||
2. Look for `mChat Extension` under the Enabled Extensions list, and click its `Disable` link.
|
2. Look for `mChat Extension for phpBB 3.1` under the Enabled Extensions list, and click its `Disable` link.
|
||||||
3. To permanently uninstall, click `Delete Data` and then delete the `/ext/dmzx/mchat` folder.
|
3. To permanently uninstall, click `Delete Data` and then delete the `/ext/dmzx/mchat` folder.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"type": "phpbb-extension",
|
"type": "phpbb-extension",
|
||||||
"description": "mChat Extension for phpbb 3.1.x",
|
"description": "mChat Extension for phpbb 3.1.x",
|
||||||
"homepage": "http://www.dmzx-web.net",
|
"homepage": "http://www.dmzx-web.net",
|
||||||
"version": "0.3.4",
|
"version": "1.0.0-RC1",
|
||||||
"time": "2015-03-10",
|
"time": "2015-03-10",
|
||||||
"keywords": ["phpbb", "extension", "mchat"],
|
"keywords": ["phpbb", "extension", "mchat"],
|
||||||
"license": "GPL-2.0",
|
"license": "GPL-2.0",
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
"phpbb/epv": "dev-master"
|
"phpbb/epv": "dev-master"
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"display-name": "mChat Extension",
|
"display-name": "mChat Extension for phpBB 3.1",
|
||||||
"soft-require": {
|
"soft-require": {
|
||||||
"phpbb/phpbb": "3.1.*"
|
"phpbb/phpbb": "3.1.*"
|
||||||
},
|
},
|
||||||
|
|||||||
68
default.travis.yml
Normal file
68
default.travis.yml
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
sudo: required
|
||||||
|
|
||||||
|
language: php
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- php: 5.3.3
|
||||||
|
env: DB=mysqli
|
||||||
|
- php: 5.3
|
||||||
|
env: DB=mysqli # MyISAM
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=mysqli
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=mysql
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=mariadb
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=postgres
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=sqlite3
|
||||||
|
- php: 5.4
|
||||||
|
env: DB=mysqli;SLOWTESTS=1
|
||||||
|
- php: 5.5
|
||||||
|
env: DB=mysqli
|
||||||
|
- php: 5.6
|
||||||
|
env: DB=mysqli
|
||||||
|
- php: hhvm
|
||||||
|
env: DB=mysqli
|
||||||
|
allow_failures:
|
||||||
|
- php: hhvm
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- EXTNAME="dmzx/mChat-Extension" # CHANGE name of the extension HERE
|
||||||
|
- SNIFF="1" # Should we run code sniffer on your code?
|
||||||
|
- IMAGE_ICC="0" # Should we run icc profile sniffer on your images?
|
||||||
|
- EPV="0" # Should we run EPV (Extension Pre Validator) on your code?
|
||||||
|
- PHPBB_BRANCH="develop-ascraeus"
|
||||||
|
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
- /^develop-.*$/
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- sudo mkdir travis
|
||||||
|
- git clone "https://github.com/nickvergessen/phpbb-ext-acme-demo.git"
|
||||||
|
- sudo cp phpbb-ext-acme-demo/phpunit.xml.dist ./
|
||||||
|
- sudo cp phpbb-ext-acme-demo/travis/prepare-phpbb.sh travis
|
||||||
|
- sudo rm -rf phpbb-ext-acme-demo
|
||||||
|
|
||||||
|
install:
|
||||||
|
- composer install --no-interaction --prefer-source
|
||||||
|
- travis/prepare-phpbb.sh $EXTNAME $PHPBB_BRANCH
|
||||||
|
- cd ../../phpBB3
|
||||||
|
- travis/prepare-extension.sh $EXTNAME $PHPBB_BRANCH
|
||||||
|
- travis/setup-phpbb.sh $DB $TRAVIS_PHP_VERSION
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- travis/setup-database.sh $DB $TRAVIS_PHP_VERSION
|
||||||
|
|
||||||
|
script:
|
||||||
|
- sh -c "if [ '$SNIFF' != '0' ]; then travis/ext-sniff.sh $DB $TRAVIS_PHP_VERSION $EXTNAME; fi"
|
||||||
|
- sh -c "if [ '$IMAGE_ICC' != '0' ]; then travis/check-image-icc-profiles.sh $DB $TRAVIS_PHP_VERSION; fi"
|
||||||
|
- phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/travis/phpunit-$DB-travis.xml --bootstrap ./tests/bootstrap.php
|
||||||
|
- sh -c "if [ '$EPV' != '0' ] && [ '$TRAVIS_PHP_VERSION' = '5.3.3' ] && [ '$DB' = 'mysqli' ]; then phpBB/ext/$EXTNAME/vendor/bin/EPV.php run --dir='phpBB/ext/$EXTNAME/'; fi"
|
||||||
Reference in New Issue
Block a user