Skip to content

Commit c65bbef

Browse files
committed
issue #32 - update readme and license files
1 parent 0142e31 commit c65bbef

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2015 Mikaël DELSOL
1+
Copyright (c) 2012-2021 Mikaël DELSOL
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -316,13 +316,7 @@ $ composer test
316316

317317
## Testing using [Docker](https://www.docker.com/)
318318
Thanks to the [Docker image](https://hub.docker.com/r/splitbrain/phpfarm) of [phpfarm](https://github.com/fpoirotte/phpfarm), tests can be run locally under *any* PHP version using the cli:
319-
- php-5.4
320-
- php-5.5
321-
- php-5.6
322-
- php-7.0
323-
- php-7.1
324-
- php-7.2
325-
- php-7.3
319+
- php-7.4
326320

327321
First of all, you need to create your container which you can do using [docker-compose](https://docs.docker.com/compose/) by running the below command line from the root directory of the project:
328322
```bash
@@ -332,7 +326,15 @@ $ docker-compose up -d --build
332326
You then have a container named `package_base` in which you can run `composer` commands and `php cli` commands such as:
333327
```bash
334328
# install deps in container (using update ensure it does use the composer.lock file if there is any)
335-
$ docker exec -it package_base php-7.2 /usr/bin/composer update
329+
$ docker exec -it package_base php-7.4 /usr/bin/composer update
336330
# run tests in container
337-
$ docker exec -it package_base php-7.2 -dmemory_limit=-1 vendor/bin/phpunit
331+
$ docker exec -it package_base php-7.4 -dmemory_limit=-1 vendor/bin/phpunit
338332
```
333+
334+
## FAQ
335+
336+
If you have a question, feel free to [create an issue](https://github.com/WsdlToPhp/PackageBase/issues/new).
337+
338+
## License
339+
340+
The MIT License (MIT). Please see [License File](LICENSE) for more information.

0 commit comments

Comments
 (0)