-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1addd0
commit 7e98105
Showing
7 changed files
with
141 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,55 @@ | ||
{ | ||
"name": "buddypress/bp-rest", | ||
"description": "Access your BuddyPress site's data through an easy-to-use HTTP REST API.", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"bp-rest", | ||
"bp-rest-api", | ||
"buddypress", | ||
"rest", | ||
"plugin" | ||
], | ||
"homepage": "https://buddypress.org", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ { | ||
"name": "BuddyPress Community", | ||
"homepage": "https://buddypress.org/about/" | ||
} ], | ||
"support": { | ||
"forum": "https://buddypress.org/support/", | ||
"docs": "https://codex.buddypress.org/", | ||
"issues": "https://buddypress.trac.wordpress.org/", | ||
"rss": "https://buddypress.org/feed/", | ||
"source": "https://buddypress.trac.wordpress.org/browser/", | ||
"wiki": "https://codex.buddypress.org/" | ||
}, | ||
"repositories": [ | ||
{ | ||
"url": "https://github.com/buddypress/bp-coding-standards.git", | ||
"type": "git" | ||
} | ||
], | ||
"require": { | ||
"composer/installers": "^1.10.0", | ||
"php": ">=5.6.0" | ||
}, | ||
"require-dev": { | ||
"buddypress/bp-coding-standards": "dev-trunk", | ||
"wp-phpunit/wp-phpunit": "^6.2", | ||
"yoast/phpunit-polyfills": "^1.0" | ||
}, | ||
"scripts": { | ||
"phpcs" : "phpcs . --basepath=.", | ||
"phpcbf": "phpcbf . --basepath=.", | ||
"phpunit": "phpunit", | ||
"phpunit:mu": "phpunit -c tests/multisite.xml" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
"name": "buddypress/bp-rest", | ||
"description": "Access your BuddyPress site's data through an easy-to-use HTTP REST API.", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"bp-rest", | ||
"bp-rest-api", | ||
"buddypress", | ||
"rest", | ||
"plugin" | ||
], | ||
"homepage": "https://buddypress.org", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "BuddyPress Community", | ||
"homepage": "https://buddypress.org/about/" | ||
} | ||
], | ||
"support": { | ||
"forum": "https://buddypress.org/support/", | ||
"docs": "https://codex.buddypress.org/", | ||
"issues": "https://buddypress.trac.wordpress.org/", | ||
"rss": "https://buddypress.org/feed/", | ||
"source": "https://buddypress.trac.wordpress.org/browser/", | ||
"wiki": "https://codex.buddypress.org/" | ||
}, | ||
"repositories": [ | ||
{ | ||
"url": "https://github.com/buddypress/bp-coding-standards.git", | ||
"type": "git" | ||
} | ||
], | ||
"require": { | ||
"composer/installers": "^1.10.0", | ||
"php": ">=5.6.0" | ||
}, | ||
"require-dev": { | ||
"buddypress/bp-coding-standards": "dev-trunk", | ||
"wp-phpunit/wp-phpunit": "^6.4", | ||
"yoast/phpunit-polyfills": "^1.0" | ||
}, | ||
"scripts": { | ||
"phpcs": "phpcs . --basepath=.", | ||
"phpcbf": "phpcbf . --basepath=.", | ||
"phpunit": "phpunit", | ||
"phpunit:mu": "phpunit -c tests/multisite.xml" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "buddypress", | ||
"description": "REST API endpoints for BuddyPress", | ||
"homepage": "https://buddypress.org", | ||
"license": "GPL-2.0-or-later", | ||
"author": "BuddyPress Community", | ||
"keywords": [ | ||
"bp-rest", | ||
"bp-rest-api", | ||
"buddypress", | ||
"plugin" | ||
], | ||
"devDependencies": { | ||
"@wordpress/env": "^5.6.0" | ||
}, | ||
"engines": { | ||
"node": ">=14.15.0", | ||
"npm": ">=6.14.8" | ||
}, | ||
"scripts": { | ||
"preinstall": "npx check-node-version --package", | ||
"prewp-env": "npx check-node-version --package", | ||
"wp-env": "wp-env", | ||
"phpunit": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/BP-REST/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/BP-REST/tests/env.xml'", | ||
"phpunit:mu": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/BP-REST/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/BP-REST/tests/env.multisite.xml'" | ||
} | ||
"name": "buddypress", | ||
"description": "REST API endpoints for BuddyPress", | ||
"homepage": "https://buddypress.org", | ||
"license": "GPL-2.0-or-later", | ||
"author": "BuddyPress Community", | ||
"keywords": [ | ||
"bp-rest", | ||
"bp-rest-api", | ||
"buddypress", | ||
"plugin" | ||
], | ||
"devDependencies": { | ||
"@wordpress/env": "^5.6.0" | ||
}, | ||
"engines": { | ||
"node": ">=14.15.0", | ||
"npm": ">=6.14.8" | ||
}, | ||
"scripts": { | ||
"preinstall": "npx check-node-version --package", | ||
"prewp-env": "npx check-node-version --package", | ||
"wp-env": "wp-env", | ||
"phpunit": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/BP-REST/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/BP-REST/tests/env.xml'", | ||
"phpunit:mu": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/BP-REST/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/BP-REST/tests/env.multisite.xml'" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
=== BP-REST === | ||
Contributors: The BuddyPress Community | ||
Donate link: https://buddypress.org | ||
Requires at least: 5.8 | ||
Tested up to: 6.4 | ||
Requires PHP: 5.6 | ||
Stable tag: 0.8.0 | ||
License: GNU General Public License v2 or later | ||
License URI: https://www.gnu.org/licenses/gpl-2.0.html | ||
== Description == | ||
Access your BuddyPress site's data through an easy-to-use HTTP REST API. | ||
== Installation == | ||
= Manual Installation = | ||
1. Upload the entire `/bp-rest` directory to the `/wp-content/plugins/` directory. | ||
2. Activate BP-REST through the 'Plugins' menu in WordPress. | ||
== Changelog == | ||
= 0.8.0 = | ||
* Inclusion in BuddyPress 12.0.0 | ||
= 0.7.0 = | ||
* Inclusion in BuddyPress 11.0.0 | ||
= 0.6.0 = | ||
* Inclusion in BuddyPress 10.0.0 | ||
= 0.5.0 = | ||
* Inclusion in BuddyPress 9.0.0 | ||
= 0.4.0 = | ||
* Inclusion in BuddyPress 8.0.0 | ||
= 0.3.0 = | ||
* Inclusion in BuddyPress 7.0.0 | ||
= 0.2.0 = | ||
* Inclusion in BuddyPress 6.0.0 | ||
= 0.1.0 = | ||
* Inclusion in BuddyPress 5.0.0 | ||
* First release | ||
== Upgrade Notice == | ||
= 0.1.0 = | ||
First Release | ||
=== BP-REST === | ||
Contributors: The BuddyPress Community | ||
Donate link: https://buddypress.org | ||
Requires at least: 5.8 | ||
Tested up to: 6.4 | ||
Requires PHP: 5.6 | ||
Stable tag: 0.9.0 | ||
License: GNU General Public License v2 or later | ||
License URI: https://www.gnu.org/licenses/gpl-2.0.html | ||
|
||
== Description == | ||
|
||
Access your BuddyPress site's data through an easy-to-use HTTP REST API. | ||
|
||
== Installation == | ||
|
||
= Manual Installation = | ||
|
||
1. Upload the entire `/bp-rest` directory to the `/wp-content/plugins/` directory. | ||
2. Activate BP-REST through the 'Plugins' menu in WordPress. | ||
|
||
== Changelog == | ||
|
||
= 0.8.0 = | ||
* Inclusion in BuddyPress 12.0.0 | ||
|
||
= 0.7.0 = | ||
* Inclusion in BuddyPress 11.0.0 | ||
|
||
= 0.6.0 = | ||
* Inclusion in BuddyPress 10.0.0 | ||
|
||
= 0.5.0 = | ||
* Inclusion in BuddyPress 9.0.0 | ||
|
||
= 0.4.0 = | ||
* Inclusion in BuddyPress 8.0.0 | ||
|
||
= 0.3.0 = | ||
* Inclusion in BuddyPress 7.0.0 | ||
|
||
= 0.2.0 = | ||
* Inclusion in BuddyPress 6.0.0 | ||
|
||
= 0.1.0 = | ||
* Inclusion in BuddyPress 5.0.0 | ||
* First release | ||
|
||
== Upgrade Notice == | ||
|
||
= 0.1.0 = | ||
First Release |