Просмотр исходного кода

Merge branch 'master' into master

pull/1016/head
Alexander Kartavenko 11 месяцев назад
Родитель
Сommit
91a2866980
Аккаунт пользователя с таким Email не найден
7 измененных файлов: 441 добавлений и 385 удалений
  1. 10
    0
      .editorconfig
  2. 13
    5
      .github/workflows/awesomebot.yml
  3. 0
    9
      .travis.yml
  4. 1
    1
      CODE-OF-CONDUCT.md
  5. 4
    3
      COLLABORATING.md
  6. 25
    18
      CONTRIBUTING.md
  7. 388
    349
      README.md

+ 10
- 0
.editorconfig Просмотреть файл

1
+; This file is for unifying the coding style for different editors and IDEs.
2
+; More information at https://editorconfig.org
3
+root = true
4
+
5
+[*]
6
+indent_style = space
7
+indent_size = 2
8
+end_of_line = lf
9
+insert_final_newline = true
10
+trim_trailing_whitespace = true

+ 13
- 5
.github/workflows/awesomebot.yml Просмотреть файл

3
   push:
3
   push:
4
     branches:
4
     branches:
5
       - master
5
       - master
6
+      
6
 jobs:
7
 jobs:
7
   build:
8
   build:
8
     runs-on: ubuntu-latest
9
     runs-on: ubuntu-latest
9
     steps:
10
     steps:
10
-    - uses: actions/checkout@v1
11
-    - name: Set up Ruby 2.6
12
-      uses: actions/setup-ruby@v1
11
+    - uses: actions/checkout@v4
12
+    - uses: ruby/setup-ruby@v1
13
       with:
13
       with:
14
-        ruby-version: 2.6.x
14
+        ruby-version: '2.7'
15
+        
15
     - name: Install Awesome Bot
16
     - name: Install Awesome Bot
16
       run: gem install awesome_bot
17
       run: gem install awesome_bot
18
+      
17
     - name: Run Awesome Bot
19
     - name: Run Awesome Bot
18
-      run: awesome_bot README.md --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com,drupal.org
20
+      run: awesome_bot README.md --request-delay 1 --allow-dupe --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com,drupal.org,oreilly.com,youtube.com,lumen.laravel.com
21
+    
22
+    - uses: actions/upload-artifact@v4
23
+      if: failure()
24
+      with:
25
+        name: ab-results
26
+        path: ab-results-README.md-filtered.json

+ 0
- 9
.travis.yml Просмотреть файл

1
-language: ruby
2
-rvm:
3
-  - 2.2
4
-before_script:
5
-  - gem install awesome_bot
6
-script:
7
-  - awesome_bot README.md --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com,drupal.org
8
-notifications:
9
-  email: false

+ 1
- 1
CODE-OF-CONDUCT.md Просмотреть файл

35
 when an individual is representing the project or its community.
35
 when an individual is representing the project or its community.
36
 
36
 
37
 Instances of abusive, harassing, or otherwise unacceptable behavior may be
37
 Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
-reported by contacting a project maintainer at awesome-php@josediazgonzalez.com. All
38
+reported by contacting a project maintainer at ziadoz@gmail.com. All
39
 complaints will be reviewed and investigated and will result in a response that
39
 complaints will be reviewed and investigated and will result in a response that
40
 is deemed necessary and appropriate to the circumstances. Maintainers are
40
 is deemed necessary and appropriate to the circumstances. Maintainers are
41
 obligated to maintain confidentiality with regard to the reporter of an
41
 obligated to maintain confidentiality with regard to the reporter of an

+ 4
- 3
COLLABORATING.md Просмотреть файл

13
 ## Reviewing
13
 ## Reviewing
14
 Please work through the following checklist when reviewing a project: 
14
 Please work through the following checklist when reviewing a project: 
15
 
15
 
16
-- Tag pull requests with the most relevant label(s).
17
-- Validate URLs work correctly and don't point to anything malicious.
18
 - Ensure suggestions adhere to [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONTRIBUTING.md).
16
 - Ensure suggestions adhere to [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONTRIBUTING.md).
17
+- Validate URLs work correctly and don't point to anything malicious.
18
+- Two approvals per pull request is preferred, but not required.
19
+- Simple pull requests fixing typos, formatting and broken links can be merged with a single approval.
19
 
20
 
20
 ## Enhancements
21
 ## Enhancements
21
 If you have an idea on how to improve the project, please open a ticket for discussion using the `Enhancement` label. Please don’t make any broad or sweeping changes without consulting other collaborators first and reaching a consensus.
22
 If you have an idea on how to improve the project, please open a ticket for discussion using the `Enhancement` label. Please don’t make any broad or sweeping changes without consulting other collaborators first and reaching a consensus.
23
 ## Join
24
 ## Join
24
 If you want to help out please send an email to my Github username [at] gmail [dot] com with the subject “Awesome PHP Collaborator and a link to your Github account and I’ll get back to you as soon as I can (I'm notoriously slow, sorry).
25
 If you want to help out please send an email to my Github username [at] gmail [dot] com with the subject “Awesome PHP Collaborator and a link to your Github account and I’ll get back to you as soon as I can (I'm notoriously slow, sorry).
25
 
26
 
26
-Thank you for taking the time to help out with Awesome PHP, your help is appreciated!
27
+Thank you for taking the time to help out with Awesome PHP, your help is appreciated!

+ 25
- 18
CONTRIBUTING.md Просмотреть файл

1
 # Contribution Guidelines
1
 # Contribution Guidelines
2
-Unfortunately, not every library, tool or framework can be considered for inclusion. The aim of Awesome PHP is to be a concise list of noteworthy and interesting software written in modern PHP. Therefore, suggested software should:
2
+Awesome PHP aims to be a concise list of the best packages, frameworks, tools, and software the PHP ecosystem has to offer. Unfortunately, this means not everything can or should be included. The suggested software should ideally be one of the following:
3
 
3
 
4
-1. Be widely recommended regardless of personal opinion
5
-2. Well known or discussed within the PHP community
6
-3. Be unique in its approach or function
7
-4. Fill a niche gap in the market
4
+* Widely known or recognised within the PHP community
5
+* Established and mature
6
+* Unique in its approach
7
+* Fulfill a niche gap in the market
8
 
8
 
9
-Self-promotion is frowned upon, so please consider seriously whether your project meets the criteria before opening a pull request, otherwise it may be closed without being reviewed.
9
+Where applicable, preference will be given to software that:
10
+
11
+* Targets supported versions of PHP
12
+* Can be installed using Composer
13
+* Is PSR compliant
14
+* Semantically versioned
15
+* Thoroughly tested
16
+* Actively maintained
17
+* Well documented in English
10
 
18
 
11
 Also, please ensure your pull request adheres to the following guidelines:
19
 Also, please ensure your pull request adheres to the following guidelines:
12
 
20
 
13
-* Software that is PHP 7.0+, Composer-installable, PSR compliant, semantically versioned, unit tested, actively maintained and well documented in English is preferred.
14
-* Please search previous suggestions before making a new one, as yours may be a duplicate.
15
-* Enter a meaningful pull request description.
16
-* Please make an individual commit for each suggestion in a separate pull request.
17
-* Put a link to each library in your pull request ticket so it's easier to review.
18
-* Use the following format for libraries: \[LIBRARY\]\(LINK\) - DESCRIPTION.
19
-* Prefix duplicate library names with their vendor or namespace followed by a space: Foo\Bar would be Foo Bar.
20
-* New categories, or improvements to the existing categorisation, are always welcome.
21
-* Please keep descriptions short, simple and unbiased. No buzzwords or marketing jargon.
22
-* End all descriptions with a full stop/period.
23
-* Check your spelling and grammar.
24
-* Make sure your text editor is set to remove trailing whitespace.
21
+* Your suggestion will be closed if it has been previously rejected or is a duplicate
22
+* Write a meaningful pull request description that includes a link to the project
23
+* Adheres to the following Markdown format: `[LIBRARY](LINK) - DESCRIPTION.`
24
+* Your description is short, clear, unbiased, and doesn't contain any jargon
25
+* The description ends with a full stop/period and no trailing whitespace
26
+* You've checked your spelling and grammar
27
+* Your entry is added alphabetically to the category
28
+* If your entry has the same name as another, it should be prefixed with the vendor (e.g., `Foo\Bar` becomes `Foo Bar`)
29
+* Feel free to suggest new categories or organisational improvements
30
+
31
+Please make sure your suggestion meets all the criteria before submitting a pull request, or it may be closed without review.
25
 
32
 
26
 Thank you for your suggestions!
33
 Thank you for your suggestions!

+ 388
- 349
README.md
Разница между файлами не показана из-за своего большого размера
Просмотреть файл


Загрузка…
Отмена
Сохранить