Files
sysPass/composer.json
Rubén D d3c6448295 test(IT): Setup integration tests
Signed-off-by: Rubén D <nuxsmin@syspass.org>
2024-07-27 11:10:50 +02:00

89 lines
2.4 KiB
JSON

{
"authors": [
{
"name": "Rubén Domínguez",
"email": "nuxsmin@syspass.org",
"role": "Author/Developer",
"homepage": "https://syspass.org/"
}
],
"autoload": {
"psr-4": {
"SP\\": "lib/SP/",
"SP\\Modules\\Web\\": "app/modules/web/",
"SP\\Modules\\Api\\": "app/modules/api/",
"SP\\Modules\\Cli\\": "app/modules/cli/",
"SP\\Tests\\": "tests/SP/"
}
},
"config": {
"classmap-authoritative": false,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"ocramius/package-versions": true
}
},
"description": "PHP web based Password Manager for business and personal use.",
"homepage": "https://syspass.org",
"license": "GPL-3.0",
"minimum-stability": "stable",
"name": "syspass/syspass",
"require": {
"php": "~8.2 || ~8.3",
"defuse/php-encryption": "^2.1",
"phpmailer/phpmailer": "^6.0",
"ademarre/binary-to-text-php": "dev-master",
"phpseclib/phpseclib": "^2.0",
"klein/klein": "^2.1",
"php-di/php-di": "^7.0",
"doctrine/common": "^v2.7",
"guzzlehttp/guzzle": "^6.3",
"monolog/monolog": "^1.23",
"vlucas/phpdotenv": "^v4.1",
"ext-pdo": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-gettext": "*",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"league/fractal": "^0.20",
"symfony/console": "^v5.1",
"symfony/lock": "^v5.0",
"aura/sqlquery": "~3.0",
"laminas/laminas-ldap": "^2.17",
"symfony/yaml": "@stable"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/error-handler": "@stable",
"phpunit/phpunit": "^11",
"fakerphp/faker": "^v1.23",
"nikic/php-parser": "^v5",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^1.9",
"mikey179/vfsstream": "@stable",
"symfony/dom-crawler": "@stable"
},
"scripts": {
"phpcs": "phpcs --standard=PSR2 lib",
"phpstan-app": "vendor/bin/phpstan analyse --level 6 lib",
"phpstan-test": "vendor/bin/phpstan analyse --level 6 tests"
},
"suggest": {
"syspass/plugin-authenticator": "^v2.2",
"ext-ldap": "*",
"ext-curl": "*",
"ext-xdebug": "*"
},
"support": {
"issues": "https://github.com/nuxsmin/sysPass/issues",
"source": "https://github.com/nuxsmin/sysPass",
"docs": "https://doc.syspass.org"
}
}