Skip to content

Commit

Permalink
NO MERGE CI ONLY - sake is symfony
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Sep 3, 2024
1 parent 704c5ab commit c56823d
Show file tree
Hide file tree
Showing 3 changed files with 8,831 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
name: CI
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
with:
composer_install: true
# installer contains a sample behat.yml file, though there are no behat tests to run
endtoend: false
# require the following in ci.yml rather than composer.json require-dev specifically for installer because unlike
Expand Down
48 changes: 45 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@
"silverstripe/vendor-plugin": "2.x-dev",
"silverstripe/recipe-cms": "6.x-dev",
"silverstripe-themes/simple": "3.x-dev",
"silverstripe/login-forms": "6.x-dev"
"silverstripe/login-forms": "6.x-dev",
"silverstripe/framework": "dev-pulls/6/symfony-sake as 6.9999999.9999999.9999999-dev",
"silverstripe/testsession": "dev-pulls/4/symfony-sake as 4.9999999.9999999.9999999-dev",
"silverstripe/graphql": "dev-pulls/6/symfony-sake as 6.9999999.9999999.9999999-dev",
"silverstripe/session-manager": "dev-pulls/3/symfony-sake as 3.9999999.9999999.9999999-dev",
"silverstripe/assets": "dev-pulls/3/symfony-sake as 3.9999999.9999999.9999999-dev",
"silverstripe/behat-extension": "dev-pulls/6/update-config as 6.9999999.9999999.9999999-dev"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
"phpunit/phpunit": "^9.6",
"silverstripe/recipe-testing": "^4",
"silverstripe/frameworktest": "dev-pulls/2/symfony-sake as 2.9999999.9999999.9999999-dev",
"mikey179/vfsstream": "^1.6.10"
},
"extra": {
"project-files": [
Expand All @@ -25,6 +34,9 @@
]
},
"config": {
"platform": {
"php": "8.3"
},
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
Expand All @@ -33,5 +45,35 @@
}
},
"prefer-stable": true,
"minimum-stability": "dev"
"minimum-stability": "dev",
"repositories": {
"silverstripe/framework": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-framework.git"
},
"silverstripe/testsession": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-testsession.git"
},
"silverstripe/graphql": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-graphql.git"
},
"silverstripe/session-manager": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-session-manager.git"
},
"silverstripe/frameworktest": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-frameworktest.git"
},
"silverstripe/assets": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-assets.git"
},
"silverstripe/behat-extension": {
"type": "vcs",
"url": "git@github.com:creative-commoners/silverstripe-behat-extension.git"
}
}
}
Loading

0 comments on commit c56823d

Please sign in to comment.