MontealegreLuis / phuml

phUML is a UML diagram generator. It takes arbitrary object oriented PHP code and creates fully blown class diagrams of it.
BSD 3-Clause "New" or "Revised" License
100 stars 19 forks source link

Download page is 404? #5

Closed mosbth closed 2 years ago

mosbth commented 3 years ago

I am trying to download the phuml phar as explained in the README.

$ wget https://montealegreluis.com/phuml/phuml.phar

I get a 404 on that link.

You can try it out like this:

$ curl --silent -I https://montealegreluis.com/phuml/phuml.phar | head -2  
HTTP/2 404                                                                 
date: Mon, 19 Apr 2021 14:39:37 GMT                                        

Or just visit the link https://montealegreluis.com/phuml/phuml.phar and it shows you a 404 page.

The main page https://montealegreluis.com/ seems to work.

MontealegreLuis commented 3 years ago

Hi @mosbth I have added a Docker image as temporary replacement for the PHAR.

docker pull montealegreluis/phuml:2.0.0
docker run --rm -v $PWD:/code montealegreluis/phuml phuml:diagram -r -a -i -o -p dot src example.png

I'd like to provide a PHAR in a future release through PHIVE to avoid running into this kind of issues

MontealegreLuis commented 2 years ago

Hi @mosbth, phUML can now be installed via PHIVE

phive install phuml

Closing this, feel free to re-open if you face any other related issue.