FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpay/Makefile at develop · phpay-io/phpay · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
phpay-io
/
phpay
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
6
Star
62
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
phpay
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (28 loc) · 1.27 KB
Breadcrumbs
phpay
/
Makefile
Copy path
File metadata and controls
39 lines (28 loc) · 1.27 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
DEFAULT_GOAL
:= help
help
:
@awk
'
BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-40s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) }
'
$(
MAKEFILE_LIST
)
#
#@ [Docker]
start
:
#
# Spin up the container
docker compose up -d
stop
:
#
# Shutdown the containers
docker compose down
build
:
#
# Build all docker images
docker compose build
#
#@ [Application]
composer
:
#
# Run composer commands. Specify the command e.g. via "make composer ARGS="install|update|require <dependency>"
docker compose run --rm app composer
$(
ARGS
)
install
:
docker compose run --rm app composer install
lint
:
#
# Run the Linter
docker compose run --rm app composer lint
test-lint
:
#
# Run the Linter Test
docker compose run --rm app composer test:lint
test-types
:
#
# Run the PHPStan analysis
docker compose run --rm app composer test:types
test-unit
:
#
# Run the Pest Test Suite
docker compose run --rm app composer test:unit
test
:
#
# Run the tests. Apply arguments via make test ARGS="--init"
docker compose run --rm app composer
test
#
#@ [Gateway Asaas]
asaas
:
#
# Run resource asaas. Apply arguments via make asaas ARGS="charge|customer|pix|webhook"
@docker compose
exec
-it app php examples/asaas/
$(
resource
)
.php
Back
|
FazBrowse Home
|
New Git URL