Skip to content

Commit

Permalink
Pimcore 11 Release Preparations (#152)
Browse files Browse the repository at this point in the history
* Pimcore 11 Release Preparations

* added composer.enterprise.json
  • Loading branch information
fashxp authored May 16, 2023
1 parent c5de1af commit 147457b
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 5 deletions.
60 changes: 60 additions & 0 deletions composer.enterprise.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"name": "pimcore/skeleton",
"type": "project",
"license": "GPL-3.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"symfony/runtime": true
}
},
"prefer-stable": true,
"require": {
"pimcore/pimcore": "^11.0",
"pimcore/admin-ui-classic-bundle": "^1.0",
"pimcore/platform-version": "^2023.1",
"symfony/runtime": "^6.2",
"symfony/dotenv": "^6.2"
},
"require-dev": {
"codeception/codeception": "^5.0.3",
"codeception/module-symfony": "^3.1.0"
},
"suggest": {
"pimcore/data-hub": "Universal data interface for GraphQL, CSV and other formats"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Pimcore\\Model\\DataObject\\": "var/classes/DataObject"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"post-create-project-cmd": "Pimcore\\Composer::postCreateProject",
"post-install-cmd": [
"Pimcore\\Composer::postInstall",
"@pimcore-scripts"
],
"post-update-cmd": [
"Pimcore\\Composer::postUpdate",
"@pimcore-scripts"
],
"pimcore-scripts": [
"Pimcore\\Composer::clearCache",
"Pimcore\\Composer::installAssets"
]
},
"repositories": {
"enterprise": {
"type": "composer",
"url": "https://enterprise.repo.pimcore.com/"
}
}
}
5 changes: 0 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,12 @@
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"pimcore/pimcore": "^11.0",
"pimcore/admin-ui-classic-bundle": "^1.0",
"symfony/runtime": "^6.2",
"symfony/dotenv": "^6.2"
},
"conflict": {
"pimcore/pimcore": "v11.0.0-ALPHA1 || v11.0.0-ALPHA2 || v11.0.0-ALPHA3 || v11.0.0-ALPHA4 || v11.0.0-ALPHA5 || v11.0.0-ALPHA6 || v11.0.0-ALPHA7 || v11.0.0-ALPHA8 || v11.0.0-BETA1 || v11.0.0-RC1",
"pimcore/admin-ui-classic-bundle": "v1.0.0-BETA1"
},
"require-dev": {
"codeception/codeception": "^5.0.3",
"codeception/module-symfony": "^3.1.0"
Expand Down

0 comments on commit 147457b

Please sign in to comment.