https://github.com/gokoshijr/azatti-challenge-php
PHP Challenge for Azatti
https://github.com/gokoshijr/azatti-challenge-php
Last synced: about 1 year ago
JSON representation
PHP Challenge for Azatti
- Host: GitHub
- URL: https://github.com/gokoshijr/azatti-challenge-php
- Owner: GokoshiJr
- Created: 2023-08-16T17:36:59.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-16T18:12:02.000Z (almost 3 years ago)
- Last Synced: 2025-01-31T23:56:49.787Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 366 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azatti php challenge
## description
## stack
- Windows 10
- xamp 8.2.4
## activate image processing in php.ini for ImageCreate function
;extension=gd to extension=gd (without ;)
## to install (go to C:/xamp/htdocs dir)
```git
git clone https://github.com/GokoshiJr/azatti-challenge-php.git
```
```bash
cd azatti-challenge-php
```
## create and fill .env file (add APP_API key for api token request and FILESYSTEM_DRIVER)
```bash
touch .env
```
- APP_API= YOUR_API_TOKEN
- FILESYSTEM_DRIVER=public
- ...another laravel key=values (see .env.example file)
## create storage link to serving pictures
```bash
php artisan storage:link
```
## run the program
```bash
php artisan serve
```
## Resources
- *[phpqrcode](https://phpqrcode.sourceforge.net/examples/index.php).*
- *[laravel](https://laravel.com/).*
- *[Guzzle](https://docs.guzzlephp.org/en/latest/overview.html).*