-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
405cda6
commit b77e6ec
Showing
4 changed files
with
196 additions
and
131 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,8 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file, in reverse chronological order by release. | ||
|
||
## 0.1.0 | ||
|
||
Initial release. | ||
|
This file was deleted.
Oops, something went wrong.
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,187 @@ | ||
# CONTRIBUTING | ||
|
||
## Resources | ||
|
||
If you wish to contribute to sylius-force-login, please be sure to | ||
read/subscribe to the following resources: | ||
|
||
- [The PSR-2 Coding Standard](http://www.php-fig.org/psr/psr-2/) | ||
|
||
If you are working on new features or refactoring [create a proposal](https://github.com/bitExpert/sylius-force-login/issues/new). | ||
|
||
## Reporting Potential Security Issues | ||
|
||
If you have encountered a potential security vulnerability, please **DO NOT** report it on the public issue tracker: send it to us at [[email protected]](mailto:[email protected]) instead. | ||
We will work with you to verify the vulnerability and patch it as soon as possible. | ||
|
||
When reporting issues, please provide the following information: | ||
|
||
- Component(s) affected | ||
- A description indicating how to reproduce the issue | ||
- A summary of the security vulnerability and impact | ||
|
||
We request that you contact us via the email address above and give the project contributors a chance to resolve the vulnerability and issue a new release prior to any public exposure. | ||
This helps protect users and provides them with a chance to upgrade and/or update in order to protect their applications. | ||
|
||
For sensitive email communications, please use [our PGP key](http://pgp.mit.edu/pks/lookup?op=vindex&search=0x6DE7F8597CECDF13). | ||
|
||
## Running Tests | ||
|
||
To run tests: | ||
|
||
1. Clone the repository: | ||
|
||
```console | ||
$ git clone [email protected]:bitExpert/sylius-force-login.git | ||
$ cd sylius-force-login | ||
``` | ||
|
||
2. Install dependencies via composer: | ||
|
||
```console | ||
$ ./composer.phar install | ||
``` | ||
|
||
If you don't have `curl` installed, you can also download `composer.phar` from https://getcomposer.org/download/ | ||
|
||
3. Run the tests using the "test" command shipped in the `composer.json`: | ||
|
||
```console | ||
$ composer test | ||
``` | ||
|
||
You can turn on conditional tests with the `phpunit.xml` file. | ||
To do so: | ||
|
||
- Copy `phpunit.xml.dist` file to `phpunit.xml` | ||
- Edit `phpunit.xml` to enable any specific functionality you want to test, as well as to provide test values to utilize. | ||
|
||
## Running Coding Standards Checks | ||
|
||
First, ensure you've installed dependencies via composer, per the previous section on running tests. | ||
To run CS checks only: | ||
|
||
```console | ||
$ composer cs-check | ||
``` | ||
|
||
To attempt to automatically fix common CS issues: | ||
|
||
```console | ||
$ composer cs-fix | ||
``` | ||
|
||
If the above fixes any CS issues, please re-run the tests to ensure they pass, and make sure you add and commit the changes after verification. | ||
|
||
## Recommended Workflow for Contributions | ||
|
||
Your first step is to establish a public repository from which we can pull your work into the master repository. | ||
We recommend using [GitHub](https://github.com), as that is where the component is already hosted. | ||
|
||
1. Setup a [GitHub account](http://github.com/), if you haven't yet | ||
2. Fork the repository (http://github.com/bitExpert/sylius-force-login) | ||
3. Clone the canonical repository locally and enter it. | ||
|
||
```console | ||
$ git clone git://github.com:bitExpert/sylius-force-login.git | ||
$ cd sylius-force-login | ||
``` | ||
|
||
4. Add a remote to your fork; substitute your GitHub username in the command | ||
below. | ||
|
||
```console | ||
$ git remote add {username} [email protected]:{username}/sylius-force-login.git | ||
$ git fetch {username} | ||
``` | ||
|
||
### Keeping Up-to-Date | ||
|
||
Periodically, you should update your fork or personal repository to match the canonical sylius-force-login repository. | ||
Assuming you have setup your local repository per the instructions above, you can do the following: | ||
|
||
```console | ||
$ git checkout master | ||
$ git fetch origin | ||
$ git rebase origin/master | ||
# OPTIONALLY, to keep your remote up-to-date - | ||
$ git push {username} master:master | ||
``` | ||
|
||
If you're tracking other branches you'll want to do the same operations for those branches; simply substitute the branch names for "master". | ||
|
||
### Working on a patch | ||
|
||
We recommend you do each new feature or bugfix in a new branch. | ||
This simplifies the task of code review as well as the task of merging your changes into the canonical repository. | ||
|
||
A typical workflow will then consist of the following: | ||
|
||
1. Create a new local branch based off your master branch. | ||
2. Switch to your new local branch. (This step can be combined with the | ||
previous step with the use of `git checkout -b`.) | ||
3. Do some work, commit, repeat as necessary. | ||
4. Push the local branch to your remote repository. | ||
5. Send a pull request. | ||
|
||
The mechanics of this process are actually quite trivial. | ||
Below, we will create a branch for fixing an issue in the tracker. | ||
|
||
```console | ||
$ git checkout -b hotfix/9295 | ||
Switched to a new branch 'hotfix/9295' | ||
``` | ||
|
||
...do some work... | ||
|
||
```console | ||
$ git commit | ||
``` | ||
|
||
...write your log message... | ||
|
||
``` console | ||
$ git push {username} hotfix/9295:hotfix/9295 | ||
Counting objects: 38, done. | ||
Delta compression using up to 2 threads. | ||
Compression objects: 100% (18/18), done. | ||
Writing objects: 100% (20/20), 8.19KiB, done. | ||
Total 20 (delta 12), reused 0 (delta 0) | ||
To ssh://[email protected]/{username}/sylius-force-login.git | ||
b5583aa..4f51698 HEAD -> master | ||
``` | ||
|
||
### Sending a PR | ||
|
||
Before sending a PR, run `composer.phar validate && composer.phar check`, as the Travis build will also run the command and will fail if the composer.lock file is not up-to-date with the changes in the composer.json file. | ||
|
||
When you’ve done that, and you’re reading to send one, you have two options: | ||
|
||
1. If using GitHub, you can do the pull request from there. | ||
Navigate to your repository, select the branch you just created, and then select the "Pull Request" button in the upper right. Select the user/organization "bitExpert" as the recipient. | ||
|
||
2. If using your own repository - or even if using GitHub - you can use `git format-patch` to create a patchset for us to apply; in fact, this is **recommended** for security-related patches. | ||
|
||
#### What Branch to Issue the Pull Request Against? | ||
|
||
Which branch should you issue a pull request against? | ||
|
||
- For fixes against the stable release, issue the pull request against the latest release branch. | ||
- For new features, or fixes that introduce new elements to the public API (such as new public methods or properties), issue the pull request against the "master" branch. | ||
|
||
### Branch Cleanup | ||
|
||
As you might imagine, if you are a frequent contributor, you'll start to get a ton of branches both locally and on your remote. | ||
Once you know that your changes have been accepted to the master repository, we suggest doing some cleanup of these branches. | ||
|
||
- Local branch cleanup | ||
|
||
```console | ||
$ git branch -d <branchname> | ||
``` | ||
|
||
- Remote branch removal | ||
|
||
```console | ||
$ git push {username} :<branchname> | ||
``` |
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,122 +1 @@ | ||
# UPGRADE FROM `v1.3.X` TO `v1.4.0` | ||
|
||
First step is upgrading Sylius with composer | ||
|
||
- `composer require sylius/sylius:~1.4.0` | ||
|
||
### Test application database | ||
|
||
#### Migrations | ||
|
||
If you provide migrations with your plugin, take a look at following changes: | ||
|
||
* Change base `AbstractMigration` namespace to `Doctrine\Migrations\AbstractMigration` | ||
* Add `: void` return types to both `up` and `down` functions | ||
|
||
#### Schema update | ||
|
||
If you don't use migrations, just run `(cd tests/Application && bin/console doctrine:schema:update --force)` to update the test application's database schema. | ||
|
||
### Dotenv | ||
|
||
* `composer require symfony/dotenv:^4.2 --dev` | ||
* Follow [Symfony dotenv update guide](https://symfony.com/doc/current/configuration/dot-env-changes.html) to incorporate required changes in `.env` files structure. Remember - they should be done on `tests/Application/` level! Optionally, you can take a look at [corresponding PR](https://github.com/Sylius/PluginSkeleton/pull/156/) introducing these changes in **PluginSkeleton** (this PR also includes changes with Behat - see below) | ||
|
||
Don't forget to clear the cache (`tests/Application/bin/console cache:clear`) to be 100% everything is loaded properly. | ||
|
||
### Test application kernel | ||
|
||
The kernel of the test application needs to be replaced with this [file](https://github.com/Sylius/PluginSkeleton/blob/1.4/tests/Application/Kernel.php). | ||
The location of the kernel is: `tests/Application/Kernel.php` (replace the content with the content of the file above). | ||
The container cleanup method is removed in the new version and keeping it will cause problems with for example the `TagAwareAdapter` which will call `commit()` on its pool from its destructor. If its pool is `TraceableAdapter` with pool `ArrayAdapter`, then the pool property of `TraceableAdapter` will be nullified before the destructor is executed and cause an error. | ||
|
||
--- | ||
|
||
### Behat | ||
|
||
If you're using Behat and want to be up-to-date with our configuration | ||
|
||
* Update required extensions with `composer require friends-of-behat/symfony-extension:^2.0 friends-of-behat/page-object-extension:^0.3 --dev` | ||
* Remove extensions that are not needed yet with `composer remove friends-of-behat/context-service-extension friends-of-behat/cross-container-extension friends-of-behat/service-container-extension --dev` | ||
* Update your `behat.yml` - look at the diff [here](https://github.com/Sylius/Sylius-Standard/pull/322/files#diff-7bde54db60a6e933518d8b61b929edce) | ||
* Add `SymfonyExtensionBundle` to your `tests/Application/config/bundles.php`: | ||
```php | ||
return [ | ||
//... | ||
FriendsOfBehat\SymfonyExtension\Bundle\FriendsOfBehatSymfonyExtensionBundle::class => ['test' => true, 'test_cached' => true], | ||
]; | ||
``` | ||
* If you use our Travis CI configuration, follow [these changes](https://github.com/Sylius/PluginSkeleton/pull/156/files#diff-354f30a63fb0907d4ad57269548329e3) introduced in `.travis.yml` file | ||
* Create `tests/Application/config/services_test.yaml` file with the following code and add these your own Behat services as well: | ||
```yaml | ||
imports: | ||
- { resource: "../../../vendor/sylius/sylius/src/Sylius/Behat/Resources/config/services.xml" } | ||
``` | ||
* Remove all `__symfony__` prefixes in your Behat services | ||
* Remove all `<tag name="fob.context_service" />` tags from your Behat services | ||
* Make your Behat services public by default with `<defaults public="true" />` | ||
* Change `contexts_services ` in your suite definitions to `contexts` | ||
* Take a look at [SymfonyExtension UPGRADE guide](https://github.com/FriendsOfBehat/SymfonyExtension/blob/master/UPGRADE-2.0.md) if you have any more problems | ||
|
||
### Phpstan | ||
|
||
* Fix the container XML path parameter in the `phpstan.neon` file as done [here](https://github.com/Sylius/PluginSkeleton/commit/37fa614dbbcf8eb31b89eaf202b4bd4d89a5c7b3) | ||
|
||
# UPGRADE FROM `v1.2.X` TO `v1.4.0` | ||
|
||
Firstly, check out the [PluginSkeleton 1.3 upgrade guide](https://github.com/Sylius/PluginSkeleton/blob/1.4/UPGRADE-1.3.md) to update Sylius version step by step. | ||
To upgrade to Sylius 1.4 follow instructions from [the previous section](https://github.com/Sylius/PluginSkeleton/blob/1.4/UPGRADE-1.4.md#upgrade-from-v13x-to-v140) with following changes: | ||
|
||
### Doctrine migrations | ||
|
||
* Change namespaces of copied migrations to `Sylius\Migrations` | ||
|
||
### Dotenv | ||
|
||
* These changes are not required, but can be done as well, if you've changed application directory structure in `1.2.x` to `1.3` update | ||
|
||
### Behat | ||
|
||
* Add `\FriendsOfBehat\SymfonyExtension\Bundle\FriendsOfBehatSymfonyExtensionBundle()` to your bundles lists in `tests/Application/AppKernel.php` (preferably only in `test` environment) | ||
* Import Sylius Behat services in `tests/Application/config/config_test.yml` and your own Behat services as well: | ||
```yaml | ||
imports: | ||
- { resource: "../../../../vendor/sylius/sylius/src/Sylius/Behat/Resources/config/services.xml" } | ||
``` | ||
* Specify test application's kernel path in `behat.yml`: | ||
```yaml | ||
FriendsOfBehat\SymfonyExtension: | ||
kernel: | ||
class: AppKernel | ||
path: tests/Application/app/AppKernel.php | ||
``` | ||
|
||
|
||
# UPGRADE FROM `v1.2.X` TO `v1.3.0` | ||
|
||
## Application | ||
|
||
* Run `composer require sylius/sylius:~1.3.0 --no-update` | ||
|
||
* Add the following code in your `behat.yml(.dist)` file: | ||
|
||
```yaml | ||
default: | ||
extensions: | ||
FriendsOfBehat\SymfonyExtension: | ||
env_file: ~ | ||
``` | ||
|
||
* Incorporate changes from the following files into plugin's test application: | ||
|
||
* [`tests/Application/package.json`](https://github.com/Sylius/PluginSkeleton/blob/1.3/tests/Application/package.json) ([see diff](https://github.com/Sylius/PluginSkeleton/pull/134/files#diff-726e1353c14df7d91379c0dea6b30eef)) | ||
* [`tests/Application/.babelrc`](https://github.com/Sylius/PluginSkeleton/blob/1.3/tests/Application/.babelrc) ([see diff](https://github.com/Sylius/PluginSkeleton/pull/134/files#diff-a2527d9d8ad55460b2272274762c9386)) | ||
* [`tests/Application/.eslintrc.js`](https://github.com/Sylius/PluginSkeleton/blob/1.3/tests/Application/.eslintrc.js) ([see diff](https://github.com/Sylius/PluginSkeleton/pull/134/files#diff-396c8c412b119deaa7dd84ae28ae04ca)) | ||
|
||
* Update PHP and JS dependencies by running `composer update` and `(cd tests/Application && yarn upgrade)` | ||
|
||
* Clear cache by running `(cd tests/Application && bin/console cache:clear)` | ||
|
||
* Install assets by `(cd tests/Application && bin/console assets:install web)` and `(cd tests/Application && yarn build)` | ||
|
||
* optionally, remove the build for PHP 7.1. in `.travis.yml` | ||
# UPGRADE |