-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:elbgoods/laravel-sync-one-to-many
- Loading branch information
Showing
8 changed files
with
68 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: normalize composer.json | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'composer.json' | ||
|
||
jobs: | ||
normalize: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: normalize composer.json | ||
run: | | ||
composer global require ergebnis/composer-normalize | ||
composer normalize | ||
- uses: stefanzweifel/[email protected] | ||
with: | ||
commit_message: normalize 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
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 |
---|---|---|
@@ -1,33 +1,44 @@ | ||
{ | ||
"name": "elbgoods/eloquent-sync-one-to-many", | ||
"type": "library", | ||
"description": "", | ||
"keywords": [ | ||
"elbgoods", | ||
"laravel-sync-one-to-many" | ||
], | ||
"homepage": "https://github.com/elbgoods/laravel-sync-one-to-many", | ||
"license": "MIT", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Niclas Schirrmeister", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, { | ||
}, | ||
{ | ||
"name": "Tom Witkowski", | ||
"email": "[email protected]", | ||
"homepage": "https://gummibeer.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4", | ||
"illuminate/support": "^6.0" | ||
"illuminate/support": "^6.0 || ^7.0" | ||
}, | ||
"require-dev": { | ||
"elbgoods/ci-test-tools": "^1.6", | ||
"orchestra/database": "^4.3", | ||
"orchestra/testbench": "^4.0", | ||
"phpunit/phpunit": "^8.0" | ||
"bamarni/composer-bin-plugin": "^1.3", | ||
"orchestra/testbench": "^4.0 || ^5.0", | ||
"phpunit/phpunit": "^8.0 || ^9.0" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Elbgoods\\SyncOneToMany\\SyncOneToManyServiceProvider" | ||
] | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
@@ -36,30 +47,27 @@ | |
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Elbgoods\\SyncOneToMany\\Tests\\": "tests" | ||
"Elbgoods\\SyncOneToMany\\Tests\\": "tests", | ||
"Elbgoods\\CiTestTools\\": "vendor-bin/elbgoods/vendor/elbgoods/ci-test-tools/src" | ||
} | ||
}, | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"@composer bin all install --ansi" | ||
], | ||
"post-update-cmd": [ | ||
"@composer bin all update --ansi" | ||
], | ||
"bin": "echo 'bin not installed'", | ||
"test": [ | ||
"vendor/bin/phpunit", | ||
"vendor/bin/php-cs-test", | ||
"vendor/bin/php-tlint-test .", | ||
"vendor/bin/php-tlint-test ./src", | ||
"vendor/bin/php-md-test ./src", | ||
"vendor/bin/php-insights-test", | ||
"vendor/bin/php-mn-test", | ||
"vendor/bin/php-mn-test ./src", | ||
"vendor/bin/php-stan-test" | ||
], | ||
"test-coverage": "vendor/bin/phpunit --coverage-html coverage" | ||
|
||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Elbgoods\\SyncOneToMany\\SyncOneToManyServiceProvider" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"require-dev": { | ||
"elbgoods/ci-test-tools": "^1.9.2" | ||
} | ||
} |