2
2
3
3
## RESOURCES
4
4
5
- If you wish to contribute to Zend Framework , please be sure to
5
+ If you wish to contribute to this project , please be sure to
6
6
read/subscribe to the following resources:
7
7
8
- - [ Coding Standards] ( https://github.com/zendframework/zf2/wiki/Coding-Standards )
9
- - [ Contributor's Guide] ( http://framework.zend.com/participate/contributor-guide )
10
- - ZF Contributor's mailing list:
11
- Archives: http://zend-framework-community.634137.n4.nabble.com/ZF-Contributor-f680267.html
12
- Subscribe: zf-contributors-subscribe@lists.zend.com
13
- - ZF Contributor's IRC channel:
14
- #zftalk.dev on Freenode.net
8
+ - [ Coding Standards] ( https://github.com/zendframework/zend-coding-standard )
9
+ - [ Forums] ( https://discourse.zendframework.com/c/contributors )
10
+ - [ Chat] ( https://zendframework-slack.herokuapp.com )
11
+ - [ Code of Conduct] ( CODE_OF_CONDUCT.md )
15
12
16
- If you are working on new features or refactoring [ create a proposal] ( https://github.com/zendframework/zend-uri/issues/new ) .
17
-
18
- ## Reporting Potential Security Issues
19
-
20
- If you have encountered a potential security vulnerability, please ** DO NOT** report it on the public
21
- issue tracker: send it to us at [ zf-security@zend.com ] ( mailto:zf-security@zend.com ) instead.
22
- We will work with you to verify the vulnerability and patch it as soon as possible.
23
-
24
- When reporting issues, please provide the following information:
25
-
26
- - Component(s) affected
27
- - A description indicating how to reproduce the issue
28
- - A summary of the security vulnerability and impact
29
-
30
- We request that you contact us via the email address above and give the project
31
- contributors a chance to resolve the vulnerability and issue a new release prior
32
- to any public exposure; this helps protect users and provides them with a chance
33
- to upgrade and/or update in order to protect their applications.
34
-
35
- For sensitive email communications, please use [ our PGP key] ( http://framework.zend.com/zf-security-pgp-key.asc ) .
13
+ If you are working on new features or refactoring
14
+ [ create a proposal] ( https://github.com/zendframework/zend-uri/issues/new ) .
36
15
37
16
## RUNNING TESTS
38
17
39
- > ### Note: testing versions prior to 2.4
40
- >
41
- > This component originates with Zend Framework 2. During the lifetime of ZF2,
42
- > testing infrastructure migrated from PHPUnit 3 to PHPUnit 4. In most cases, no
43
- > changes were necessary. However, due to the migration, tests may not run on
44
- > versions < 2.4. As such, you may need to change the PHPUnit dependency if
45
- > attempting a fix on such a version.
46
-
47
18
To run tests:
48
19
49
20
- Clone the repository:
50
21
51
22
``` console
52
- $ git clone git@ github.com: zendframework/zend-uri.git
53
- $ cd
23
+ $ git clone git:// github.com/ zendframework/zend-uri.git
24
+ $ cd zend-uri
54
25
```
55
26
56
27
- Install dependencies via composer:
57
28
58
29
``` console
59
- $ curl -sS https://getcomposer.org/installer | php --
60
- $ ./composer.phar install
30
+ $ composer install
61
31
```
62
32
63
- If you don't have ` curl ` installed, you can also download ` composer.phar ` from https://getcomposer.org/
33
+ If you don't have ` composer ` installed, please download it from https://getcomposer.org/download /
64
34
65
- - Run the tests via ` phpunit ` and the provided PHPUnit config, like in this example :
35
+ - Run the tests using the "test" command shipped in the ` composer.json ` :
66
36
67
37
``` console
68
- $ ./vendor/bin/phpunit
38
+ $ composer test
69
39
```
70
40
71
- You can turn on conditional tests with the phpunit.xml file.
41
+ You can turn on conditional tests with the ` phpunit.xml ` file.
72
42
To do so:
73
43
74
44
- Copy ` phpunit.xml.dist ` file to ` phpunit.xml `
@@ -77,24 +47,22 @@ To do so:
77
47
78
48
## Running Coding Standards Checks
79
49
80
- This component uses [ phpcs] ( https://github.com/squizlabs/PHP_CodeSniffer ) for coding
81
- standards checks, and provides configuration for our selected checks.
82
- ` phpcs ` is installed by default via Composer.
50
+ First, ensure you've installed dependencies via composer, per the previous
51
+ section on running tests.
83
52
84
- To run checks only:
53
+ To run CS checks only:
85
54
86
55
``` console
87
56
$ composer cs-check
88
57
```
89
58
90
- ` phpcs ` also includes a tool for fixing most CS violations, ` phpcbf ` :
91
-
59
+ To attempt to automatically fix common CS issues:
92
60
93
61
``` console
94
62
$ composer cs-fix
95
63
```
96
64
97
- If you allow ` phpcbf ` to fix CS issues, please re-run the tests to ensure
65
+ If the above fixes any CS issues, please re-run the tests to ensure
98
66
they pass, and make sure you add and commit the changes after verification.
99
67
100
68
## Recommended Workflow for Contributions
@@ -103,12 +71,12 @@ Your first step is to establish a public repository from which we can
103
71
pull your work into the master repository. We recommend using
104
72
[ GitHub] ( https://github.com ) , as that is where the component is already hosted.
105
73
106
- 1 . Setup a [ GitHub account] ( http ://github.com/) , if you haven't yet
107
- 2 . Fork the repository (http ://github.com/zendframework/zend-uri )
74
+ 1 . Setup a [ GitHub account] ( https ://github.com/) , if you haven't yet
75
+ 2 . Fork the repository (https ://github.com/zendframework/zend-uri )
108
76
3 . Clone the canonical repository locally and enter it.
109
77
110
78
``` console
111
- $ git clone git://github.com: zendframework/zend-uri.git
79
+ $ git clone git://github.com/ zendframework/zend-uri.git
112
80
$ cd zend-uri
113
81
```
114
82
@@ -188,15 +156,7 @@ To send a pull request, you have two options.
188
156
If using GitHub, you can do the pull request from there. Navigate to
189
157
your repository, select the branch you just created, and then select the
190
158
"Pull Request" button in the upper right. Select the user/organization
191
- "zendframework" as the recipient.
192
-
193
- If using your own repository - or even if using GitHub - you can use `git
194
- format-patch` to create a patchset for us to apply; in fact, this is
195
- ** recommended** for security-related patches. If you use ` format-patch ` , please
196
- send the patches as attachments to:
197
-
198
- - zf-devteam@zend.com for patches without security implications
199
- - zf-security@zend.com for security patches
159
+ "zendframework" (or whatever the upstream organization is) as the recipient.
200
160
201
161
#### What branch to issue the pull request against?
202
162
@@ -227,8 +187,3 @@ repository, we suggest doing some cleanup of these branches.
227
187
``` console
228
188
$ git push {username} :<branchname>
229
189
```
230
-
231
-
232
- ## Conduct
233
-
234
- Please see our [ CONDUCT.md] ( CONDUCT.md ) to understand expected behavior when interacting with others in the project.
0 commit comments