-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (44 loc) · 1.58 KB
/
composer.json
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
40
41
42
43
44
45
{
"name": "natzar/stripe-pad",
"description": "The PHP SaaS boilerplate to launch fast with Stripe",
"type": "project",
"require": {
"ext-curl": "*",
"stripe/stripe-php": "^7.67",
"phpmailer/phpmailer": "^6.5",
"google/apiclient": "^2.0",
"google/apiclient-services": "^0.200",
"dompdf/dompdf": "^2.0",
"league/oauth2-client": "^2.8",
"league/oauth2-google": "^4.0"
},
"require-dev": {
"phplint/phplint": "^0.0.1",
"wp-coding-standards/wpcs": "^3.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9",
"erusev/parsedown": "^1.7"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Beto Ayesa",
"email": "beto@ayesadigital.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"install-tailwind": "cd tailwind; npm install;",
"rebuild-css": "cd tailwind; npx tailwindcss -i ./src/input.css -o ./../cdn/css/app.css --minify",
"tailwind-update-browser": "cd tailwind; npx update-browserslist-db@latest",
"rebuild-locale": "msgfmt messages.po -o messages.mo",
"locale-strings":"xgettext -o ./locale/en_EN.utf8/LC_MESSAGES/messages.po --from-code=UTF-8 -k_ -n ./app/views/landing/*.php",
"locale-merge":"msgmerge -U existing.po messages.po",
"locale-build": "msgfmt -o messages.mo existing.po"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}