$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo | |
| exec pwsh -NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command ".\.git\hooks\prepare-commit-msg.ps1 '$1'" | |
| exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - bash: | # Access Token should need Build Read, Work Item Read & Write, Member Entitlement Management Read | |
| curl -u test@test.com:access-token-xxxxxxxxxxx https://dev.azure.com/{organisation}/{project}/_apis/build/builds/$(build.buildId)/workitems?api-version=6.0 | jq '.value[] | .id' | | |
| while IFS=$"\n" read -r c; do | |
| wid=$(echo $c | tr -dc '0-9') | |
| echo | |
| echo Posting status to work item: $wid | |
| echo | |
| curl -u test@test.com:access-token-xxxxxxxxxxx https://dev.azure.com/{organisation}/{project}/_apis/wit/workItems/$wid/comments?api-version=6.0-preview.3 -X POST --data '{"text": "Build $(Build.BuildNumber) completed with status: $(Agent.JobStatus)"}' -H 'Content-Type: application/json' | |
| echo | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Release Pipeline | |
| - stage: Release | |
| jobs: | |
| - deployment: HostedVs2017 | |
| ... | |
| variables: | |
| - name: TestRunStatus | |
| value: '' | |
| strategy: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - task: VSTest@2 | |
| displayName: 'VsTest - Integration Tests' | |
| inputs: | |
| testAssemblyVer2: | | |
| **\MyNamespace.IntegrationTests.dll | |
| !**\*xunit.runner*.dll | |
| !**\obj\** | |
| codeCoverageEnabled: true | |
| diagnosticsEnabled: true | |
| rerunFailedTests: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param ( | |
| [string]$command = "", | |
| [string]$file = "coco.txt" | |
| ) | |
| function listInstalledPrograms() { | |
| choco list --local --id-only --limit-output | |
| } | |
| function dumpInstalledPrograms() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ErrorActionPreference = "Stop" | |
| Import-Module -Name PushoverForPS | |
| $outdated = (choco outdated -r | Select-String '^([^|]+)\|.*$').Matches.Groups | Where-Object {$_.Name -eq 1} | ForEach-Object {$_.Value} | |
| $pretty = ($outdated -join ', ') | |
| If ($outdated.count -gt 0) { | |
| Send-Pushover -AppToken TOKENGOESHERE -UserKey KEYGOESHERE -Message "Outdated packages: `n$pretty" | |
| } |
- Broadway - Infrastructure and testing helpers for creating CQRS and event sourced applications
- EventCentric.Core - Event Sourcing and CQRS in PHP
- LiteCQRS - Small convention based CQRS library for PHP
- predaddy - Common DDD classes including an annotation driven message bus and tools for CQRS and Event Sourcing
- ProophEventSourcing - Provides basic functionality for event-sourced aggregates
- ProophEventStore - PHP 5.4+ EventStore Implementation
- ProophServiceBus - PHP Enterprise Service Bus Implementation supporting CQRS and DDD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // this will read in all the speakers, sort them by date, then store in a file for use later | |
| $speakerList = [ | |
| 'speaker-file', | |
| ]; | |
| $speakers_all = []; | |
| foreach($speakerList as $speaker) { | |
| $speakers_all[$speaker] = include_once("./speakers/{$speaker}.php"); | |
| $speakers_all[$speaker]['bullet-points'] = text2bullets($speakers_all[$speaker]['bullet-points']); |