Initial commit
Showing
.ddev/config.yaml
0 → 100644
.env.example.dev
0 → 100644
.env.example.production
0 → 100644
.env.example.staging
0 → 100644
.gitignore
0 → 100644
bootstrap.php
0 → 100644
composer.json
0 → 100644
{ | ||
"require": { | ||
"craftcms/cms": "^4.4.0", | ||
"vlucas/phpdotenv": "^5.4.0" | ||
}, | ||
"require-dev": { | ||
"craftcms/generator": "^1.3.0", | ||
"yiisoft/yii2-shell": "^2.0.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"modules\\": "modules/" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"craftcms/plugin-installer": true, | ||
"yiisoft/yii2-composer": true | ||
}, | ||
"sort-packages": true, | ||
"optimize-autoloader": true, | ||
"platform": { | ||
"php": "8.0.2" | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\"" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
config/app.php
0 → 100644
config/general.php
0 → 100644
config/license.key
0 → 100644
config/project/project.yaml
0 → 100644
config/routes.php
0 → 100644
craft
0 → 100755
storage/.gitignore
0 → 100644
templates/.gitkeep
0 → 100644
templates/index.twig
0 → 100644
web/.htaccess
0 → 100644
web/cpresources/.gitignore
0 → 100644
web/index.php
0 → 100644
web/web.config
0 → 100644
Please register or sign in to comment