mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 07:50:08 +08:00
- Converted all non-flex bundles with available bundles into Symfony/Flex. - Updated namespaces to more closely match Symfony. - Removed unnecessary dependencies and recipes. - Executed Symfony/Flex recipes to create default configs. - Improved composer.json scripts.
73 lines
1.9 KiB
JSON
Executable file
73 lines
1.9 KiB
JSON
Executable file
{
|
|
"name": "salesagility/suitecrm",
|
|
"description": "SuiteCRM Application",
|
|
"homepage": "https://suitecrm.com",
|
|
"type": "project",
|
|
"authors": [
|
|
{
|
|
"name": "SalesAgility Ltd"
|
|
}
|
|
],
|
|
"config": {
|
|
"vendor-dir": "vendor",
|
|
"platform": {
|
|
"php": "7.2.0"
|
|
},
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"ext-json": "*",
|
|
"api-platform/api-pack": "^1.2",
|
|
"symfony/dotenv": "^4.4",
|
|
"symfony/flex": "^1.6",
|
|
"symfony/framework-bundle": "^4.4",
|
|
"symfony/monolog-bundle": "^3.5",
|
|
"symfony/orm-pack": "^1.0",
|
|
"symfony/security-bundle": "^4.4",
|
|
"webonyx/graphql-php": "^0.13.8"
|
|
},
|
|
"require-dev": {
|
|
"api-platform/schema-generator": "^2.2",
|
|
"codeception/codeception": "^4.0",
|
|
"codeception/module-asserts": "^1.1",
|
|
"dama/doctrine-test-bundle": "^5.0",
|
|
"doctrine/doctrine-fixtures-bundle": "~3.2",
|
|
"doctrine/doctrine-migrations-bundle": "^2.1",
|
|
"roave/security-advisories": "dev-master",
|
|
"symfony/maker-bundle": "^1.14"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "core/src/",
|
|
"SuiteCRM\\Core\\src\\": "core/src/",
|
|
"SuiteCRM\\Core\\Modules\\": "core/modules/",
|
|
"SuiteCRM\\Core\\Legacy\\": "core/legacy/",
|
|
"App\\Command\\": "core/src/Command/",
|
|
"App\\DataFixtures\\": "core/src/DataFixtures/",
|
|
"App\\DataProvider\\": "core/src/DataProvider/",
|
|
"App\\Entity\\": "core/src/Entity/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"auto-scripts": {
|
|
"cache:clear": "symfony-cmd",
|
|
"cache:warmup": "symfony-cmd",
|
|
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
|
},
|
|
"post-install-cmd": [
|
|
"@auto-scripts"
|
|
],
|
|
"post-update-cmd": [
|
|
"@auto-scripts"
|
|
]
|
|
},
|
|
"extra": {
|
|
"src-dir": "core/src",
|
|
"symfony": {
|
|
"allow-contrib": false
|
|
}
|
|
}
|
|
}
|