Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Commit

Permalink
Normalize composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Dec 6, 2021
1 parent 7249f1e commit fa3897c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "nucleos/auto-merge-action",
"type": "project",
"description": "Automerge labeled GitHub Pull Requests.",
"license": "MIT",
"type": "project",
"keywords": [
"console",
"github",
"merge",
"automerge"
],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-ctype": "*",
Expand All @@ -27,6 +27,18 @@
"ergebnis/composer-normalize": "^2.13",
"ergebnis/test-util": "^1.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nucleos\\AutoMergeAction\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nucleos\\AutoMergeAction\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
Expand All @@ -39,17 +51,5 @@
"allow-contrib": false,
"require": "6.0.*"
}
},
"autoload": {
"psr-4": {
"Nucleos\\AutoMergeAction\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nucleos\\AutoMergeAction\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
6 changes: 3 additions & 3 deletions vendor-bin/tools/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nucleos/dev-tools",
"type": "project",
"description": "Development tools that do not conflict the project dependencies",
"type": "project",
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"maglnet/composer-require-checker": "^3.5",
Expand All @@ -20,9 +20,9 @@
"vimeo/psalm": "^4.13"
},
"config": {
"bin-dir": "../../vendor/bin",
"platform": {
"php": "8.0.2"
},
"bin-dir": "../../vendor/bin"
}
}
}

0 comments on commit fa3897c

Please sign in to comment.