File tree Expand file tree Collapse file tree 5 files changed +3
-83
lines changed Expand file tree Collapse file tree 5 files changed +3
-83
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,3 @@ composer.lock
5
5
/vendor /
6
6
php.ini
7
7
phpunit.xml
8
- apigen.phar
9
- site
Original file line number Diff line number Diff line change 1
- .PHONY : apigen composer test docs mkdocs
1
+ .PHONY : apigen composer test
2
2
3
3
COMPOSER_ARGS =update --no-interaction --prefer-source
4
4
PHPUNIT_ARGS =--process-isolation
@@ -25,41 +25,13 @@ test: composer
25
25
false ; \
26
26
fi
27
27
28
- apigen :
29
- @command -v apigen > /dev/null 2>&1 ; \
30
- if test $$ ? -eq 0; then \
31
- apigen generate; \
32
- elif test -r apigen.phar; then \
33
- php apigen.phar generate; \
34
- else \
35
- echo >&2 " Cannot find apigen; aborting." ; \
36
- false ; \
37
- fi
38
-
39
- mkdocs :
40
- @command -v mkdocs > /dev/null 2>&1 ; \
41
- if test $$ ? -eq 0; then \
42
- mkdocs build --clean; \
43
- else \
44
- echo >&2 " Cannot find mkdocs; aborting." ; \
45
- false ; \
46
- fi
47
-
48
28
release/% : release-log/%
49
29
@echo " Please run:"
50
30
@echo " " git add RELEASE-$(* )
51
31
@echo " " git commit -m \" Add $(* ) release notes\"
52
32
@echo " " git tag -a -m \" Release MongoDB library $(* ) \" $(* )
53
33
@echo " " git push REMOTE ` git rev-parse --abbrev-ref HEAD`
54
34
@echo " " git push REMOTE --tags
55
- @echo " " make release-docs
56
-
57
- docs : mkdocs apigen
58
-
59
- release-docs : docs
60
- mkdocs gh-deploy
61
- @echo " If origin is your local fork, you may need to run:"
62
- @echo " " git push REMOTE gh-pages:gh-pages
63
35
64
36
release-log/% :
65
37
@git log --pretty=format:" %ad %an <%ae>%n%x09* %s%n" --date short --no-merges --since=" $$ (git show -s --format=%ad ` git rev-list --tags --max-count=1` )" > RELEASE-$(* )
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ extension, see:
22
22
23
23
## Documentation
24
24
25
- - http ://mongodb.github.io/mongo- php-library/
25
+ - https ://docs. mongodb.com/ php-library/
26
26
27
27
# Installation
28
28
29
29
As a high-level abstraction for the driver, this library naturally requires that
30
- the [ ` mongodb ` extension be installed] ( http://mongodb.github.io/mongo-php-driver/# installation ) :
30
+ the [ ` mongodb ` extension be installed] ( http://php.net/manual/en/mongodb. installation.php ) :
31
31
32
32
$ pecl install mongodb
33
33
$ echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments