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
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"type": "object", | |
"properties": { | |
"activity-timeout": { | |
"description": "How long a CMFActivity-initiated transaction may last, in seconds", | |
"default": null, | |
"type": [ | |
"number", | |
"null" |
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
# Usage: git-changelog-markdown > changelog-draft.md | |
git-changelog-markdown () { | |
git log --topo-order --pretty="format:%d - %s" | sed 's/(tag.*) /\ | |
### & \ | |
/' \ | |
| grep -v 'Merge pull request' \ | |
| grep -v 'Merge commit' | |
} |
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
{ | |
"requires": true, | |
"lockfileVersion": 1, | |
"dependencies": { | |
"@composer-asset/yiisoft--yii-bootstrap4": { | |
"version": "file:vendor/foxy/composer-asset/yiisoft/yii-bootstrap4", | |
"requires": { | |
"bootstrap": "^4.1.3", | |
"jquery": "^3.3.1", | |
"popper.js": "^1.14.5" |
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
{ | |
"name": "dmstr/phd5-app", | |
"minimum-stability": "beta", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://asset-packagist.org" | |
} | |
], | |
"require": { |
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
> FXP_ASSET__ENABLED=0 composer create-project -vvv yiisoft/yii2-app-advanced advanced-noplugin 2.0.12 | |
Loading config file /Users/tobias/.composer/config.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Reading /Users/tobias/.composer/composer.json | |
Loading config file /Users/tobias/.composer/config.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Loading config file /Users/tobias/.composer/composer.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Reading /Users/tobias/.composer/auth.json | |
Checked CA file /opt/local/share/curl/curl-ca-bundle.crt: valid |
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
> composer create-project -vvv yiisoft/yii2-app-advanced advanced2 2.0.12 | |
Loading config file /Users/tobias/.composer/config.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Reading /Users/tobias/.composer/composer.json | |
Loading config file /Users/tobias/.composer/config.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Loading config file /Users/tobias/.composer/composer.json | |
Loading config file /Users/tobias/.composer/auth.json | |
Reading /Users/tobias/.composer/auth.json | |
Checked CA file /opt/local/share/curl/curl-ca-bundle.crt: valid |
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
<?php | |
namespace tests\codeception\common\_support; | |
use Codeception\Exception\ModuleException; | |
/** | |
* | |
*/ | |
class AcceptanceHelper extends \Codeception\Module |
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
sam /roj/stacks/test/swarm-pull-test> docker-compose --verbose up | |
compose.config.config.find: Using configuration files: ./docker-compose.yml | |
docker.auth.auth.find_config_file: Trying paths: ['/roj/config/config.json', '/root/.docker/config.json', '/root/.dockercfg'] | |
docker.auth.auth.find_config_file: Found file at path: /roj/config/config.json | |
docker.auth.auth.load_config: Found 'auths' section | |
docker.auth.auth.parse_auth: Found entry (registry=u'registry.example.com/hrzg/ee', username=u'registry') | |
compose.cli.command.get_client: docker-compose version 1.8.1, build 878cff1 | |
docker-py version: 1.10.3 | |
CPython version: 2.7.9 | |
OpenSSL version: OpenSSL 1.0.1e 11 Feb 2013 |
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
> docker run -v ${PWD}:/app composer install --ignore-platform-reqs | |
Loading composer repositories with package information | |
Installing dependencies (including require-dev) from lock file | |
Package operations: 156 installs, 0 updates, 0 removals | |
- Installing yiisoft/yii2-composer (2.0.5) Downloading: 100% | |
- Installing fxp/composer-asset-plugin (v1.2.2) Downloading: 100% | |
- Installing wikimedia/composer-merge-plugin (v1.3.1) Downloading: 100% | |
- Installing ezyang/htmlpurifier (v4.8.0) Downloading: 100% | |
- Installing cebe/markdown (1.0.2) Downloading: 100% | |
- Installing bower-asset/jquery (2.2.4) Downloading: 100% |
NewerOlder