-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update public information * Update description
- Loading branch information
1 parent
c4ede44
commit 8572019
Showing
2 changed files
with
67 additions
and
59 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 |
---|---|---|
@@ -1,58 +1,66 @@ | ||
{ | ||
"name": "prestashopcorp/ps_accounts", | ||
"config": { | ||
"preferred-install": "dist", | ||
"platform": { | ||
"php": "5.6" | ||
}, | ||
"optimize-autoloader": true, | ||
"prepend-autoloader": false | ||
"name": "prestashopcorp/ps_accounts", | ||
"description": "PS Accounts authentifies stores in the PrestaShop Cloud, which enable secure communications for any PrestaShop modules.", | ||
"type": "prestashop-module", | ||
"authors": [ | ||
{ | ||
"name": "Account team", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/PrestaShopCorp/ps_accounts", | ||
"role": "Maintainer" | ||
} | ||
], | ||
"license": "OSL-3.0", | ||
"config": { | ||
"preferred-install": "dist", | ||
"platform": { | ||
"php": "5.6" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PrestaShop\\Module\\PsAccounts\\": "src/", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\": "vendor/guzzlehttp/guzzle/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\Promise\\": "vendor/guzzlehttp/promises/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\Psr7\\": "vendor/guzzlehttp/psr7/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\League\\OAuth2\\Client\\": "vendor/league/oauth2-client/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\": "vendor/lcobucci/jwt/src" | ||
}, | ||
"classmap": [ | ||
"ps_accounts.php", | ||
"controllers/" | ||
] | ||
"optimize-autoloader": true, | ||
"prepend-autoloader": false | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PrestaShop\\Module\\PsAccounts\\": "src/", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\": "vendor/guzzlehttp/guzzle/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\Promise\\": "vendor/guzzlehttp/promises/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\GuzzleHttp\\Psr7\\": "vendor/guzzlehttp/psr7/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\League\\OAuth2\\Client\\": "vendor/league/oauth2-client/src", | ||
"PrestaShop\\Module\\PsAccounts\\Vendor\\Lcobucci\\JWT\\": "vendor/lcobucci/jwt/src" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PrestaShop\\Module\\PsAccounts\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"phpseclib/phpseclib": "^2.0", | ||
"ext-json": "*", | ||
"lcobucci/jwt": "^3.3", | ||
"monolog/monolog": "1.25.3", | ||
"prestashop/module-lib-service-container": "^1.2", | ||
"sentry/sentry": "^1.0", | ||
"segmentio/analytics-php": "^1.8", | ||
"ramsey/uuid": "^3.9", | ||
"prestashopcorp/oauth2-prestashop": "^2.0", | ||
"guzzlehttp/guzzle": "^6.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7", | ||
"prestashop/php-dev-tools": "3.*", | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"fzaninotto/faker": "^1.9" | ||
}, | ||
"scripts": { | ||
"set-license-header": [ | ||
"@php ./vendor/bin/header-stamp --license=\"assets/afl.txt\" --exclude=\".github,node_modules,vendor,vendor,tests,_dev\"" | ||
], | ||
"phpunit": "docker exec -u www-data -ti phpunit-dev ./vendor/bin/phpunit --configuration './phpunit.xml' --test-suffix 'Test.php,.phpt'" | ||
}, | ||
"author": "PrestaShop", | ||
"license": "AFL-3.0", | ||
"type": "prestashop-module" | ||
"classmap": [ | ||
"ps_accounts.php", | ||
"controllers/" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PrestaShop\\Module\\PsAccounts\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"phpseclib/phpseclib": "^2.0", | ||
"ext-json": "*", | ||
"lcobucci/jwt": "^3.3", | ||
"monolog/monolog": "1.25.3", | ||
"prestashop/module-lib-service-container": "^1.2", | ||
"sentry/sentry": "^1.0", | ||
"segmentio/analytics-php": "^1.8", | ||
"ramsey/uuid": "^3.9", | ||
"prestashopcorp/oauth2-prestashop": "^2.0", | ||
"guzzlehttp/guzzle": "^6.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7", | ||
"prestashop/php-dev-tools": "3.*", | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"fzaninotto/faker": "^1.9" | ||
}, | ||
"scripts": { | ||
"set-license-header": [ | ||
"@php ./vendor/bin/header-stamp --license=\"assets/afl.txt\" --exclude=\".github,node_modules,vendor,vendor,tests,_dev\"" | ||
], | ||
"phpunit": "docker exec -u www-data -ti phpunit-dev ./vendor/bin/phpunit --configuration './phpunit.xml' --test-suffix 'Test.php,.phpt'" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.