-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into robaiken/dont-suppress-composer-error
- Loading branch information
Showing
23 changed files
with
1,089 additions
and
1,011 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
# frozen_string_literal: true | ||
|
||
module Dependabot | ||
VERSION = "0.254.0" | ||
VERSION = "0.255.0" | ||
end |
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
41 changes: 41 additions & 0 deletions
41
composer/spec/fixtures/projects/null_dependencies_with_lockfile/composer.json
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,41 @@ | ||
{ | ||
"name": "joshuaestes/server-tools", | ||
"description": "Collection of command line tools to help with server management and maintenance", | ||
"keywords": [], | ||
"homepage": "https://github.com/JoshuaEstes/ServerTools", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Joshua Estes", | ||
"homepage": "http://joshuaestes.me" | ||
}, | ||
{ | ||
"name": "Contributors", | ||
"homepage": "https://github.com/JoshuaEstes/ServerTools/graphs/contributors" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"require": { | ||
"php": ">=5.3.2", | ||
"symfony/console": ">=2.1,<=2.3@dev", | ||
"symfony/process": ">=2.1,<=2.3@dev", | ||
"symfony/yaml": ">=2.1,<=2.3@dev", | ||
"symfony/finder": ">=2.1,<=2.3@dev", | ||
"symfony/filesystem": ">=2.1,<=2.3@dev" | ||
}, | ||
"replace": { | ||
"JoshuaEstes/ServerTools": "self.version" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "*", | ||
"mikey179/vfsStream": "*" | ||
}, | ||
"autoload": { | ||
"psr-0": { "": "src/" } | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.0-dev" | ||
} | ||
} | ||
} |
Oops, something went wrong.