Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: silverstripe/silverstripe-campaign-admin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dcbe5be5a7c04b4d729a7915ea58e6fa2603a6b1
Choose a base ref
...
head repository: silverstripe/silverstripe-campaign-admin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7391e6f1cb6c6b01fdb3359341e1d0e1c27da614
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Mar 4, 2025

  1. ENH CMS 6 compatibility

    emteknetnz committed Mar 4, 2025
    Copy the full SHA
    7391e6f View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −0 README.md
  2. +1 −2 composer.json
  3. +1 −1 src/AddToCampaignValidator.php
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Silverstripe Campaign Admin Module

[![CI](https://github.com/silverstripe/silverstripe-campaign-admin/actions/workflows/ci.yml/badge.svg)](https://github.com/silverstripe/silverstripe-campaign-admin/actions/workflows/ci.yml)
[![Silverstripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)

## Overview

3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -24,8 +24,7 @@
"php": "^8.3",
"silverstripe/admin": "^3",
"silverstripe/framework": "^6",
"silverstripe/versioned": "^3",
"silverstripe/vendor-plugin": "^2"
"silverstripe/versioned": "^3"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
2 changes: 1 addition & 1 deletion src/AddToCampaignValidator.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

namespace SilverStripe\CampaignAdmin;

use SilverStripe\Forms\Validator;
use SilverStripe\Forms\Validation\Validator;

class AddToCampaignValidator extends Validator
{