Skip to content

Commit ff3b954

Browse files
committed
NO MERGE - CI ONLY (no filterbycallback)
1 parent ecc6cb3 commit ff3b954

File tree

3 files changed

+12503
-3
lines changed

3 files changed

+12503
-3
lines changed

.github/workflows/ci.yml

+1
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

composer.json

+23-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
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"
38+
"silverstripe/crontask": "4.0.x-dev",
39+
"silverstripe/versioned": "dev-pulls/3.0/refactor-sitetree-filter as 3.0.9999999.9999999-dev",
40+
"silverstripe/cms": "dev-pulls/6.0/no-filterbycallback as 6.0.9999999.9999999-dev",
41+
"silverstripe/versioned-admin": "dev-pulls/3.0/refactor-sitetree-filter as 3.0.9999999.9999999-dev"
3942
},
4043
"require-dev": {
4144
"silverstripe/frameworktest": "^2",
@@ -54,6 +57,9 @@
5457
]
5558
},
5659
"config": {
60+
"platform": {
61+
"php": "8.3"
62+
},
5763
"process-timeout": 600,
5864
"allow-plugins": {
5965
"composer/installers": true,
@@ -62,5 +68,19 @@
6268
}
6369
},
6470
"prefer-stable": true,
65-
"minimum-stability": "dev"
66-
}
71+
"minimum-stability": "dev",
72+
"repositories": {
73+
"silverstripe/versioned": {
74+
"type": "vcs",
75+
"url": "[email protected]:creative-commoners/silverstripe-versioned.git"
76+
},
77+
"silverstripe/cms": {
78+
"type": "vcs",
79+
"url": "[email protected]:creative-commoners/silverstripe-cms.git"
80+
},
81+
"silverstripe/versioned-admin": {
82+
"type": "vcs",
83+
"url": "[email protected]:creative-commoners/silverstripe-versioned-admin.git"
84+
}
85+
}
86+
}

0 commit comments

Comments
 (0)