-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #225 from CodeForPhilly/develop
Release: v3.0.0-beta.12
- Loading branch information
Showing
107 changed files
with
587 additions
and
1,597 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Projections | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v3.*' | ||
|
||
|
||
jobs: | ||
holobranch-projections: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Update holobranch: emergence/skeleton/v3' | ||
uses: JarvusInnovations/hologit@actions/projector/v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
HAB_LICENSE: accept | ||
with: | ||
ref: releases/v3 | ||
holobranch: emergence-skeleton | ||
commit-to: emergence/skeleton/v3 | ||
- name: 'Update holobranch: emergence/vfs-site/v3' | ||
uses: JarvusInnovations/hologit@actions/projector/v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
HAB_LICENSE: accept | ||
with: | ||
ref: releases/v3 | ||
holobranch: emergence-vfs-site | ||
commit-to: emergence/vfs-site/v3 | ||
- name: 'Update v3.laddr.us' | ||
env: | ||
VFS_DEV_TOKEN: ${{ secrets.VFS_DEV_TOKEN }} | ||
run: | | ||
# pull latest commit | ||
curl -X POST \ | ||
--silent \ | ||
--show-error \ | ||
--fail \ | ||
-H "Authorization: Token ${VFS_DEV_TOKEN}" \ | ||
-H "Accept: application/json" \ | ||
"http://v3.laddr.us/site-admin/sources/laddr/pull?fetch=true" \ | ||
| jq '.' | ||
# sync VFS to git | ||
curl -X POST \ | ||
--silent \ | ||
--show-error \ | ||
--fail \ | ||
-H "Authorization: Token ${VFS_DEV_TOKEN}" \ | ||
-H "Accept: application/json" \ | ||
"http://v3.laddr.us/site-admin/sources/laddr/sync-to-vfs" \ | ||
| jq '.' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.emergence | ||
.php_cs.cache |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[holomapping] | ||
holosource = "=>emergence-layer" | ||
files = "**" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[holosource] | ||
url = "https://github.com/EmergencePlatform/layer-events.git" | ||
ref = "refs/heads/releases/v2" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
$finder = PhpCsFixer\Finder::create() | ||
//->exclude('somedir') | ||
->in(__DIR__) | ||
; | ||
|
||
return PhpCsFixer\Config::create() | ||
->setRules([ | ||
/** | ||
* Tap the most thoroughly-considered and | ||
* widely-adopted presets for minimizing errors | ||
*/ | ||
'@PSR1' => true, | ||
'@PSR2' => true, | ||
// '@PSR12' => true, // not supported yet | ||
'@Symfony' => true, | ||
|
||
/** | ||
* Apply a consistent order to class members. | ||
* | ||
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.16|fixer:ordered_class_elements | ||
* | ||
* Compatible with @Symfony | ||
*/ | ||
'ordered_class_elements' => true, | ||
|
||
/** | ||
* Symfony only cares about blank lines before returns, | ||
* but phpcsfixer's default includes a few more cases. | ||
* | ||
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.16|fixer:blank_line_before_statement | ||
* | ||
* Compatible with @Symfony | ||
*/ | ||
'blank_line_before_statement' => true, | ||
]) | ||
->setFinder($finder) | ||
; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="PHP_CodeSniffer"> | ||
<!-- See list of available standards: https://github.com/squizlabs/PHP_CodeSniffer/tree/master/src/Standards --> | ||
<rule ref="PSR1"/> | ||
<rule ref="PSR2"/> | ||
<rule ref="PSR12"/> | ||
<rule ref="Symfony"/> | ||
|
||
<file>app</file> | ||
<file>bootstrap</file> | ||
<file>config</file> | ||
<file>database</file> | ||
<file>resources</file> | ||
<file>routes</file> | ||
<file>tests</file> | ||
|
||
<exclude-pattern>bootstrap/cache/*</exclude-pattern> | ||
<exclude-pattern>bootstrap/autoload.php</exclude-pattern> | ||
<exclude-pattern>*/migrations/*</exclude-pattern> | ||
<exclude-pattern>*/seeds/*</exclude-pattern> | ||
<exclude-pattern>*.blade.php</exclude-pattern> | ||
<exclude-pattern>*.js</exclude-pattern> | ||
|
||
<!-- Show progression --> | ||
<arg value="p"/> | ||
</ruleset> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.