https://github.com/wintercms/base
Base metapackage for Winter
https://github.com/wintercms/base
Last synced: 4 months ago
JSON representation
Base metapackage for Winter
- Host: GitHub
- URL: https://github.com/wintercms/base
- Owner: wintercms
- License: mit
- Created: 2023-07-12T11:56:20.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2024-07-09T11:49:36.000Z (almost 2 years ago)
- Last Synced: 2025-10-12T00:27:04.058Z (9 months ago)
- Homepage: https://wintercms.com
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Winter CMS Base
Base metapackage for Winter. This provides a handy shortcut to download all necessary requirements for Winter, including all core modules.
## Usage
If you have created a Winter installation already, you may change the following lines in your `composer.json` file:
```json
"require": {
"php": "^8.0.2",
"winter/storm": "dev-develop as 1.2",
"winter/wn-system-module": "dev-develop",
"winter/wn-backend-module": "dev-develop",
"winter/wn-cms-module": "dev-develop",
"laravel/framework": "^9.1",
"wikimedia/composer-merge-plugin": "~2.1.0"
}
```
To the following:
```json
"require": {
"winter/base": "dev-develop"
}
```
You can target a specific version (or branch) by changing the version requirement, for example:
```json
"require": {
"winter/base": "1.2.3"
}
```
Will install the dependencies required for `v1.2.3` and lock the version of all modules to `v1.2.3`.
## Notes
This will not install any development dependencies or scripts. You must still source these from the standard [`composer.json`](https://github.com/wintercms/winter/blob/develop/composer.json) file in Winter and include them in your installation.