This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
c4eff1b
commit 8604b37
Showing
1 changed file
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "mypreview/social-network-widget", | ||
"type": "wordpress-plugin", | ||
"description": "A simple widget that allows you easily add icons for the most popular social networks to your sidebar or other widget area.", | ||
"keywords": [ | ||
"WordPress", | ||
"Plugin" | ||
], | ||
"homepage": "https://wordpress.org/support/plugin/social-network-widget", | ||
"license": "GPL-3.0", | ||
"authors": [ | ||
{ | ||
"name": "Mahdi Yazdani", | ||
"homepage": "https://mahdiyazdani.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2" | ||
}, | ||
"require-dev": { | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", | ||
"wp-coding-standards/wpcs": "^2.2.1", | ||
"phpunit/phpunit": "^7", | ||
"phpcompatibility/phpcompatibility-wp": "^2.1", | ||
"php-parallel-lint/php-parallel-lint": "^1.2.0", | ||
"wp-cli/i18n-command": "^2.2" | ||
}, | ||
"scripts": { | ||
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs", | ||
"lint:wpcbf": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf", | ||
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor --exclude node_modules .", | ||
"make-pot": "wp i18n make-pot . languages/social-network-widget.pot" | ||
} | ||
} |