Skip to content

Commit 7d8e51c

Browse files
authored
Merge pull request #12250 from greg0ire/3.5.x
Merge 2.20.x up into 3.5.x
2 parents ffd3f50 + 2f8f1cf commit 7d8e51c

3 files changed

Lines changed: 62 additions & 26 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Composer Lint"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "*.x"
7+
paths:
8+
- ".github/workflows/composer-lint.yml"
9+
- "composer.json"
10+
push:
11+
branches:
12+
- "*.x"
13+
paths:
14+
- ".github/workflows/composer-lint.yml"
15+
- "composer.json"
16+
17+
jobs:
18+
composer-lint:
19+
name: "Composer Lint"
20+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@12.1.0"

composer.json

Lines changed: 42 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,39 @@
11
{
22
"name": "doctrine/orm",
3-
"type": "library",
43
"description": "Object-Relational-Mapper for PHP",
5-
"keywords": ["orm", "database"],
6-
"homepage": "https://www.doctrine-project.org/projects/orm.html",
74
"license": "MIT",
8-
"authors": [
9-
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
10-
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
11-
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
12-
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
13-
{"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
5+
"type": "library",
6+
"keywords": [
7+
"orm",
8+
"database"
149
],
15-
"scripts": {
16-
"docs": "composer --working-dir docs update && ./docs/vendor/bin/build-docs.sh @additional_args"
17-
},
18-
"config": {
19-
"allow-plugins": {
20-
"composer/package-versions-deprecated": true,
21-
"dealerdirect/phpcodesniffer-composer-installer": true,
22-
"phpstan/extension-installer": true
10+
"authors": [
11+
{
12+
"name": "Guilherme Blanco",
13+
"email": "guilhermeblanco@gmail.com"
2314
},
24-
"sort-packages": true
25-
},
15+
{
16+
"name": "Roman Borschel",
17+
"email": "roman@code-factory.org"
18+
},
19+
{
20+
"name": "Benjamin Eberlei",
21+
"email": "kontakt@beberlei.de"
22+
},
23+
{
24+
"name": "Jonathan Wage",
25+
"email": "jonwage@gmail.com"
26+
},
27+
{
28+
"name": "Marco Pivetta",
29+
"email": "ocramius@gmail.com"
30+
}
31+
],
32+
"homepage": "https://www.doctrine-project.org/projects/orm.html",
2633
"require": {
2734
"php": "^8.1",
28-
"composer-runtime-api": "^2",
2935
"ext-ctype": "*",
36+
"composer-runtime-api": "^2",
3037
"doctrine/collections": "^2.2",
3138
"doctrine/dbal": "^3.8.2 || ^4",
3239
"doctrine/deprecations": "^0.5.3 || ^1",
@@ -55,16 +62,26 @@
5562
"symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
5663
},
5764
"autoload": {
58-
"psr-4": { "Doctrine\\ORM\\": "src" }
65+
"psr-4": {
66+
"Doctrine\\ORM\\": "src"
67+
}
5968
},
6069
"autoload-dev": {
6170
"psr-4": {
62-
"Doctrine\\Tests\\": "tests/Tests",
71+
"Doctrine\\Performance\\": "tests/Performance",
6372
"Doctrine\\StaticAnalysis\\": "tests/StaticAnalysis",
64-
"Doctrine\\Performance\\": "tests/Performance"
73+
"Doctrine\\Tests\\": "tests/Tests"
6574
}
6675
},
67-
"archive": {
68-
"exclude": ["!vendor", "tests", "*phpunit.xml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp"]
76+
"config": {
77+
"allow-plugins": {
78+
"composer/package-versions-deprecated": true,
79+
"dealerdirect/phpcodesniffer-composer-installer": true,
80+
"phpstan/extension-installer": true
81+
},
82+
"sort-packages": true
83+
},
84+
"scripts": {
85+
"docs": "composer --working-dir docs update && ./docs/vendor/bin/build-docs.sh @additional_args"
6986
}
7087
}

docs/en/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ If this documentation is not helping to answer questions you have about
1313
Doctrine ORM don't panic. You can get help from different sources:
1414

1515
- There is a :doc:`FAQ <reference/faq>` with answers to frequent questions.
16-
- The `Doctrine Mailing List <https://groups.google.com/group/doctrine-user>`_
1716
- Slack chat room `#orm <https://www.doctrine-project.org/slack>`_
1817
- Report a bug on `GitHub <https://github.com/doctrine/orm/issues>`_.
1918
- On `StackOverflow <https://stackoverflow.com/questions/tagged/doctrine-orm>`_

0 commit comments

Comments
 (0)