Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions projects/plugins/wpcloud-sso/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Files not needed to be distributed in the package.
.gitattributes export-ignore
.github/ export-ignore

# Files to include in the mirror repo, but excluded via gitignore
# Remember to end all directories with `/**` to properly tag every file.
# /src/js/example.min.js production-include
jetpack_vendor/** production-include
vendor/autoload.php production-include
vendor/autoload_packages.php production-include
vendor/automattic/** production-include
vendor/composer/** production-include
vendor/jetpack-autoloader/** production-include

# Files to exclude from the mirror repo, but included in the monorepo.
# Remember to end all directories with `/**` to properly tag every file.
.gitattributes production-exclude
changelog/** production-exclude
composer.lock production-exclude
.phpcs.dir.xml production-exclude
README.md production-exclude
/vendor/automattic/jetpack-autoloader/** production-exclude
/vendor/automattic/jetpack-changelogger/** production-exclude
/vendor/automattic/jetpack-composer-plugin/** production-exclude
17 changes: 17 additions & 0 deletions projects/plugins/wpcloud-sso/.phan/baseline.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
/**
* This is an automatically generated baseline for Phan issues.
* When Phan is invoked with --load-baseline=path/to/baseline.php,
* The pre-existing issues listed in this file won't be emitted.
*
* This file can be updated by invoking Phan with --save-baseline=path/to/baseline.php
* (can be combined with --load-baseline)
*/
return [
// This baseline has no suppressions
// Currently, file_suppressions and directory_suppressions are the only supported suppressions
'file_suppressions' => [
],
// 'directory_suppressions' => ['src/directory_name' => ['PhanIssueName1', 'PhanIssueName2']] can be manually added if needed.
// (directory_suppressions will currently be ignored by subsequent calls to --save-baseline, but may be preserved in future Phan releases)
];
13 changes: 13 additions & 0 deletions projects/plugins/wpcloud-sso/.phan/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php
/**
* This configuration will be read and overlaid on top of the
* default configuration. Command-line arguments will be applied
* after this file is read.
*
* @package automattic/jetpack-wpcloud-sso
*/

// Require base config.
require __DIR__ . '/../../../../.phan/config.base.php';

return make_phan_config( dirname( __DIR__ ) );
24 changes: 24 additions & 0 deletions projects/plugins/wpcloud-sso/.phpcs.dir.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<ruleset>

<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="jetpack-wpcloud-sso" />
</property>
</properties>
</rule>
<rule ref="Jetpack.Functions.I18n">
<properties>
<property name="text_domain" value="jetpack-wpcloud-sso" />
</properties>
</rule>

<rule ref="WordPress.Utils.I18nTextDomainFixer">
<properties>
<property name="old_text_domain" type="array" />
<property name="new_text_domain" value="jetpack-wpcloud-sso" />
</properties>
</rule>

</ruleset>
7 changes: 7 additions & 0 deletions projects/plugins/wpcloud-sso/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

9 changes: 9 additions & 0 deletions projects/plugins/wpcloud-sso/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Jetpack_WPCloud_SSO

## Security

Need to report a security vulnerability? Go to [https://automattic.com/security/](https://automattic.com/security/) or directly to our security bug bounty site [https://hackerone.com/automattic](https://hackerone.com/automattic).

## License

Jetpack_WPCloud_SSO is licensed under [GNU General Public License v2 (or later)](./LICENSE.txt)
Empty file.
4 changes: 4 additions & 0 deletions projects/plugins/wpcloud-sso/changelog/initial-version
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: added

Initial version.
52 changes: 52 additions & 0 deletions projects/plugins/wpcloud-sso/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "automattic/jetpack-wpcloud-sso",
"description": "Hack-n-slash plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-assets": "@dev",
"automattic/jetpack-autoloader": "@dev",
"automattic/jetpack-composer-plugin": "@dev",
"automattic/jetpack-config": "@dev",
"automattic/jetpack-connection": "@dev",
"automattic/jetpack-sync": "@dev"
},
"require-dev": {
"automattic/jetpack-changelogger": "@dev"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {},
"repositories": [
{
"type": "path",
"url": "../../packages/*",
"options": {
"monorepo": true
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autorelease": true,
"autotagger": true,
"mirror-repo": "Automattic/jetpack-wpcloud-sso",
"release-branch-prefix": "jetpack-wpcloud-sso",
"changelogger": {
"versioning": "semver"
},
"wp-plugin-slug": "jetpack-wpcloud-sso"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
},
"autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_jetpack_wpcloud_ssoⓥ0_1_0_alpha"
}
}
Loading
Loading