Skip to content

Commit

Permalink
Update composer.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
hbhalodia committed Feb 14, 2023
1 parent 38c98fe commit 311c100
Show file tree
Hide file tree
Showing 3,336 changed files with 524,411 additions and 519 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
117 changes: 52 additions & 65 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,54 @@
{
"name": "rtcamp/login-with-google",
"description": "WordPress plugin to let users login with google.",
"license": "GPL 2.0",
"authors": [
{
"name": "rtCamp",
"email": "[email protected]",
"homepage": "https://rtcamp.com/",
"role": "Developer"
},
{
"name": "Utkarsh Patel",
"email": "[email protected]"
},
{
"name": "Paul Clark",
"role": "Developer"
},
{
"name": "Ankit Gade",
"email": "[email protected]",
"homepage": "https://iamank.it/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"pimple/pimple": "3.3.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3",
"sirbrillig/phpcs-variable-analysis": "^v2.11.3",
"automattic/vipwpcs": "^2.3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"phpunit/phpunit": "9.5",
"10up/wp_mock": "0.4.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"RtCamp\\GoogleLogin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RtCamp\\GoogleLogin\\Tests\\": "tests/php"
}
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs",
"cs:fix": "@php ./vendor/bin/phpcbf",
"tests:unit": "@php ./vendor/bin/phpunit tests/php/Unit/",
"qa": [
"@cs",
"@tests"
]
}
"name": "rtcamp/login-with-google",
"description": "WordPress plugin to let users login with google.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"homepage": "https://github.com/rtCamp/login-with-google",
"require": {
"php": ">=7.1",
"pimple/pimple": "3.3.*"
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"automattic/vipwpcs": "^2.3",
"civicrm/composer-downloads-plugin": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"php-stubs/wordpress-stubs": "^6.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"wp-coding-standards/wpcs": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"RtCamp\\GoogleLogin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RtCamp\\GoogleLogin\\Tests\\": "tests/php"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"civicrm/composer-downloads-plugin": true
},
"sort-packages": true
},
"extra": {
"downloads": {
"phpstan": {
"path": "vendor/bin/phpstan",
"type": "phar",
"url": "https://github.com/phpstan/phpstan/releases/latest/download/phpstan.phar"
}
}
},
"scripts": {
"analyze": "if [ -z $TEST_SKIP_PHPSTAN ]; then phpstan --version; phpstan analyze --ansi --memory-limit=2G; fi"
}
}
Loading

0 comments on commit 311c100

Please sign in to comment.