Skip to content

Commit 67099b6

Browse files
committed
.
1 parent ecc6cb3 commit 67099b6

File tree

4 files changed

+12621
-8
lines changed

4 files changed

+12621
-8
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
name: CI
1111
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
1212
with:
13+
composer_install: true
1314
# Use simple_matrix to limit the number of created jobs
1415
# phpunit.xml.dist has a large number of testsuites, all of which are tested with
1516
# multiple versions of php + databases in both the modules themselves and other recipes
@@ -98,6 +99,10 @@ jobs:
9899
endtoend: true
99100
endtoend_suite: blog
100101
endtoend_config: vendor/silverstripe/blog/behat.yml
102+
- php: 8.3
103+
endtoend: true
104+
endtoend_suite: campaign-admin
105+
endtoend_config: vendor/silverstripe/campaign-admin/behat.yml
101106
- php: 8.3
102107
endtoend: true
103108
endtoend_suite: cms

composer.json

+43-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"php": "^8.3",
99
"silverstripe/recipe-plugin": "2.0.x-dev",
1010
"silverstripe/installer": "6.0.x-dev",
11-
"silverstripe/developer-docs": "6.0.x-dev",
11+
"silverstripe/developer-docs": "dev-pulls/6.0/campaign-admin as 6.0.x-dev",
1212
"silverstripe/hybridsessions": "4.0.x-dev",
1313
"silverstripe/totp-authenticator": "6.0.x-dev",
1414
"silverstripe/mfa": "6.0.x-dev",
@@ -35,14 +35,16 @@
3535
"silverstripe/graphql": "6.0.x-dev",
3636
"silverstripe/subsites": "4.0.x-dev",
3737
"silverstripe/blog": "5.0.x-dev",
38-
"silverstripe/crontask": "4.0.x-dev"
39-
},
40-
"require-dev": {
41-
"silverstripe/frameworktest": "^2",
38+
"silverstripe/crontask": "4.0.x-dev",
39+
"silverstripe/frameworktest": "2.x-dev",
4240
"silverstripe/graphql-devtools": "2.x-dev",
4341
"silverstripe/recipe-testing": "^4",
4442
"silverstripe/webauthn-authenticator": "6.x-dev",
45-
"mikey179/vfsstream": "^1.6"
43+
"mikey179/vfsstream": "^1.6.10",
44+
"silverstripe/campaign-admin": "dev-pulls/3.0/campaign-admin as 3.0.x-dev",
45+
"silverstripe/cms": "dev-pulls/6.0/campaign-admin as 6.0.x-dev",
46+
"silverstripe/asset-admin": "dev-pulls/3.0/campaign-admin as 3.0.x-dev",
47+
"silverstripe/versioned": "dev-pulls/3.0/campaign-admin as 3.0.x-dev"
4648
},
4749
"extra": {
4850
"project-files": [
@@ -58,9 +60,42 @@
5860
"allow-plugins": {
5961
"composer/installers": true,
6062
"silverstripe/recipe-plugin": true,
61-
"silverstripe/vendor-plugin": true
63+
"silverstripe/vendor-plugin": true,
64+
"dealerdirect/phpcodesniffer-composer-installer": true
65+
},
66+
"platform": {
67+
"php": "8.3"
6268
}
6369
},
6470
"prefer-stable": true,
65-
"minimum-stability": "dev"
71+
"minimum-stability": "dev",
72+
"repositories": {
73+
"x0": {
74+
"type": "vcs",
75+
"url": "[email protected]:creative-commoners/silverstripe-campaign-admin"
76+
},
77+
"x1": {
78+
"type": "vcs",
79+
"url": "[email protected]:creative-commoners/silverstripe-cms"
80+
},
81+
"x2": {
82+
"type": "vcs",
83+
"url": "[email protected]:creative-commoners/silverstripe-asset-admin"
84+
},
85+
"x3": {
86+
"type": "vcs",
87+
"url": "[email protected]:creative-commoners/silverstripe-versioned"
88+
},
89+
"x4": {
90+
"type": "vcs",
91+
"url": "[email protected]:creative-commoners/developer-docs"
92+
}
93+
},
94+
"conflict": {
95+
"symfony/cache-contracts": "3.2.1",
96+
"symfony/deprecation-contracts": "3.2.1",
97+
"symfony/event-dispatcher-contracts": "3.2.1",
98+
"symfony/service-contracts": "3.2.1",
99+
"symfony/translation-contracts": "3.2.1"
100+
}
66101
}

0 commit comments

Comments
 (0)