Skip to content

Commit

Permalink
Merge 2dcfb3f into a4b5731
Browse files Browse the repository at this point in the history
  • Loading branch information
cweagans committed Feb 6, 2023
2 parents a4b5731 + 2dcfb3f commit fbe37db
Show file tree
Hide file tree
Showing 81 changed files with 2,110 additions and 637 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
@@ -0,0 +1,8 @@
# Exclude files that don't need to be present in packages (so they're not downloaded by Composer)
/.coveralls.yml export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/*.md export-ignore
/*.yml export-ignore
/tests export-ignore
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
/codeception.yml
/tests/_data/fixtures/**/vendor/
/tests/_data/fixtures/**/composer.lock
/tests/_data/fixtures/**/patches.lock
/tests/_output/
/tests/_support/_generated/
/tests/*.suite.yml
Expand Down
30 changes: 16 additions & 14 deletions codeception.dist.yml
@@ -1,21 +1,23 @@

namespace: cweagans\Composer\Tests

actor: Tester
paths:
tests: tests
data: tests/_data
log: tests/_output
support: tests/_support
envs: tests/_envs
tests: tests
data: tests/_data
log: tests/_output
support: tests/_support
envs: tests/_envs
settings:
colors: true
memory_limit: 1024M
colors: true
memory_limit: 1024M
extensions:
enabled:
- Codeception\Extension\RunFailed
enabled:
- Codeception\Extension\RunFailed
coverage:
enabled: true
whitelist:
include:
- src/*
enabled: true
whitelist:
include:
- src/*
exclude:
- tests/*

9 changes: 7 additions & 2 deletions composer.json
Expand Up @@ -4,7 +4,10 @@
"license": "BSD-3-Clause",
"type": "composer-plugin",
"extra": {
"class": "cweagans\\Composer\\Plugin\\Patches"
"class": "cweagans\\Composer\\Plugin\\Patches",
"_": "The following two lines ensure that composer-patches is loaded as early as possible.",
"plugin-modifies-downloads": true,
"plugin-modifies-install-path": true
},
"authors": [
{
Expand All @@ -31,7 +34,9 @@
"codeception/module-asserts": "^2.0"
},
"autoload": {
"psr-4": {"cweagans\\Composer\\": "src"}
"psr-4": {
"cweagans\\Composer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
Expand Down

0 comments on commit fbe37db

Please sign in to comment.