Skip to content

Commit

Permalink
Specify executables in composer integrate (phpactor#2553)
Browse files Browse the repository at this point in the history
Similar to 346e727. Makes the
commands run on Windows (where only files with specific extensions,
like .exe, can be executable).
  • Loading branch information
MatmaRex authored Feb 21, 2024
1 parent f2faa8e commit e1fe94f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@
"@php bin/phpactor config:json-schema phpactor.schema.json"
],
"integrate": [
"composer validate --strict",
"vendor/bin/php-cs-fixer fix",
"vendor/bin/phpstan analyse --memory-limit=-1",
"vendor/bin/phpunit",
"vendor/bin/phpbench run --iterations=1 --revs=1",
"@composer validate --strict",
"@php vendor/bin/php-cs-fixer fix",
"@php vendor/bin/phpstan analyse --memory-limit=-1",
"@php vendor/bin/phpunit",
"@php vendor/bin/phpbench run --iterations=1 --revs=1",
"make docs"
]
}
Expand Down

0 comments on commit e1fe94f

Please sign in to comment.