Skip to content

Commit 8204985

Browse files
authored
Jetpack_WPCloud_SSO: Add new plugin (#45511)
1 parent bebd9cc commit 8204985

File tree

14 files changed

+2120
-2
lines changed

14 files changed

+2120
-2
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Files not needed to be distributed in the package.
2+
.gitattributes export-ignore
3+
.github/ export-ignore
4+
5+
# Files to include in the mirror repo, but excluded via gitignore
6+
# Remember to end all directories with `/**` to properly tag every file.
7+
# /src/js/example.min.js production-include
8+
jetpack_vendor/** production-include
9+
vendor/autoload.php production-include
10+
vendor/autoload_packages.php production-include
11+
vendor/automattic/** production-include
12+
vendor/composer/** production-include
13+
vendor/jetpack-autoloader/** production-include
14+
15+
# Files to exclude from the mirror repo, but included in the monorepo.
16+
# Remember to end all directories with `/**` to properly tag every file.
17+
.gitattributes production-exclude
18+
changelog/** production-exclude
19+
composer.lock production-exclude
20+
.phpcs.dir.xml production-exclude
21+
README.md production-exclude
22+
/vendor/automattic/jetpack-autoloader/** production-exclude
23+
/vendor/automattic/jetpack-changelogger/** production-exclude
24+
/vendor/automattic/jetpack-composer-plugin/** production-exclude
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
/**
3+
* This is an automatically generated baseline for Phan issues.
4+
* When Phan is invoked with --load-baseline=path/to/baseline.php,
5+
* The pre-existing issues listed in this file won't be emitted.
6+
*
7+
* This file can be updated by invoking Phan with --save-baseline=path/to/baseline.php
8+
* (can be combined with --load-baseline)
9+
*/
10+
return [
11+
// This baseline has no suppressions
12+
// Currently, file_suppressions and directory_suppressions are the only supported suppressions
13+
'file_suppressions' => [
14+
],
15+
// 'directory_suppressions' => ['src/directory_name' => ['PhanIssueName1', 'PhanIssueName2']] can be manually added if needed.
16+
// (directory_suppressions will currently be ignored by subsequent calls to --save-baseline, but may be preserved in future Phan releases)
17+
];
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* This configuration will be read and overlaid on top of the
4+
* default configuration. Command-line arguments will be applied
5+
* after this file is read.
6+
*
7+
* @package automattic/jetpack-wpcloud-sso
8+
*/
9+
10+
// Require base config.
11+
require __DIR__ . '/../../../../.phan/config.base.php';
12+
13+
return make_phan_config( dirname( __DIR__ ) );
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<ruleset>
3+
4+
<rule ref="WordPress.WP.I18n">
5+
<properties>
6+
<property name="text_domain" type="array">
7+
<element value="jetpack-wpcloud-sso" />
8+
</property>
9+
</properties>
10+
</rule>
11+
<rule ref="Jetpack.Functions.I18n">
12+
<properties>
13+
<property name="text_domain" value="jetpack-wpcloud-sso" />
14+
</properties>
15+
</rule>
16+
17+
<rule ref="WordPress.Utils.I18nTextDomainFixer">
18+
<properties>
19+
<property name="old_text_domain" type="array" />
20+
<property name="new_text_domain" value="jetpack-wpcloud-sso" />
21+
</properties>
22+
</rule>
23+
24+
</ruleset>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Jetpack_WPCloud_SSO
2+
3+
## Security
4+
5+
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).
6+
7+
## License
8+
9+
Jetpack_WPCloud_SSO is licensed under [GNU General Public License v2 (or later)](./LICENSE.txt)

projects/plugins/wpcloud-sso/changelog/.gitkeep

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Significance: patch
2+
Type: added
3+
4+
Initial version.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "automattic/jetpack-wpcloud-sso",
3+
"description": "Hack-n-slash plugin",
4+
"type": "wordpress-plugin",
5+
"license": "GPL-2.0-or-later",
6+
"require": {
7+
"automattic/jetpack-assets": "@dev",
8+
"automattic/jetpack-autoloader": "@dev",
9+
"automattic/jetpack-composer-plugin": "@dev",
10+
"automattic/jetpack-config": "@dev",
11+
"automattic/jetpack-connection": "@dev",
12+
"automattic/jetpack-sync": "@dev"
13+
},
14+
"require-dev": {
15+
"automattic/jetpack-changelogger": "@dev"
16+
},
17+
"autoload": {
18+
"classmap": [
19+
"src/"
20+
]
21+
},
22+
"scripts": {},
23+
"repositories": [
24+
{
25+
"type": "path",
26+
"url": "../../packages/*",
27+
"options": {
28+
"monorepo": true
29+
}
30+
}
31+
],
32+
"minimum-stability": "dev",
33+
"prefer-stable": true,
34+
"extra": {
35+
"autorelease": true,
36+
"autotagger": true,
37+
"mirror-repo": "Automattic/jetpack-wpcloud-sso",
38+
"release-branch-prefix": "jetpack-wpcloud-sso",
39+
"changelogger": {
40+
"versioning": "semver"
41+
},
42+
"wp-plugin-slug": "jetpack-wpcloud-sso"
43+
},
44+
"config": {
45+
"allow-plugins": {
46+
"roots/wordpress-core-installer": true,
47+
"automattic/jetpack-autoloader": true,
48+
"automattic/jetpack-composer-plugin": true
49+
},
50+
"autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_jetpack_wpcloud_ssoⓥ0_1_0_alpha"
51+
}
52+
}

0 commit comments

Comments
 (0)