Skip to content

Commit 144294a

Browse files
committed
Don't install phpdocumentor using composer.
1 parent 19a5bbe commit 144294a

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ composer.lock
44
*.cache
55
docs/phpdoc-cache*
66
coverage
7+
phpDocumentor.phar

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ If your data is mapped incorrectly, create an issue or PR, and provide:
5555

5656
## Generating docs
5757

58-
```shell script
59-
composer install
60-
composer build-docs
61-
```
62-
63-
Docs committed to the repository should be available on Github pages:
64-
https://github.com/rudolfbyker/php-marc-csl/deployments/activity_log?environment=github-pages
58+
1. Install phpDocumentor.
59+
According to https://www.phpdoc.org/, we should not install phpDocumentor using composer.
60+
Follow the instructions there to install it.
61+
2. Run `phpDocumentor`.
62+
3. Commit generated docs. Docs committed to the repository should be available on Github pages:
63+
https://github.com/rudolfbyker/php-marc-csl/deployments/activity_log?environment=github-pages

composer.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"scriptotek/marc": "^2.2"
1515
},
1616
"require-dev": {
17-
"phpunit/phpunit": "^9.5",
18-
"phpdocumentor/phpdocumentor": "^3.1"
17+
"phpunit/phpunit": "^9.5"
1918
},
2019
"autoload": {
2120
"psr-4": {
@@ -24,7 +23,6 @@
2423
}
2524
},
2625
"scripts": {
27-
"test": "vendor/bin/phpunit",
28-
"build-docs": "vendor/bin/phpdoc"
26+
"test": "vendor/bin/phpunit"
2927
}
3028
}

0 commit comments

Comments
 (0)