Unable to choose CakePHP in Laragon quick app - cakephp

I have installed PHP, but the turtorial I was following was able to choose Cakephp in quickapp after installing php. But I don't have the choice. Is there something I need to install? Won't Laragon be able to recognise Cakephp and install upon selection.

Quick app > Configuration
remove hashes at beginning of CakePHP create project code:
Old:
### CakePHP=composer create-project --prefer-dist cakephp/app %s
New:
CakePHP=composer create-project --prefer-dist cakephp/app %s
When you go back to Quick app you will see CakePHP above Symfony

Related

How to setup OHIF on windows

Please what is the correct way to have this Running
i am trying to install this and get it running on windows using this documentation.
i have installed Meteor , and then navigated to the folder and typed meteor, as talked about from here and here
I am getting this as Error
run: You're not in a Meteor project directory.
To create a new Meteor project:
meteor create <project name>
For example:
meteor create myapp
For more help, see 'meteor --help'.
Please what am I not doing correctly.
If you want to use OHIF I suggest you upgrade to Version 3.
The setup is easier (with good documentation) and the code is more tidy: https://github.com/OHIF/Viewers
I would also suggest to use docker.
This project helped me a lot setting up my instance: https://github.com/trypag/ohif-orthanc-postgres-docker/blob/master/docker-compose.yml

Reinstall cake command

i have a web application developed using cakephp.
Now I need to make some changes and I need to use the bin / cake command, but the bin folder is not present and not even re-executing the composer command is this created.
How can I regenerate it so that it refers to the version of cake already present?
Thx
Try these steps:
Open your composer.json and search for your cakephp version by the key "cakephp/cakephp"
Create a brand new cakephp project with this version with the command:
php composer.phar create-project --prefer-dist cakephp/app:^3.8 my_app_name
where 3.8 should be your cakephp version and my_app_name your application name
Take the bin folder and copy/paste it to your actual application.

Laravel Package - artisan vendor publish command not working

I'm new to Laravel, trying to install packages. I've tried many packages to include in my project like AdminLTE and Blogify. as the AdminLTE manual and Blogify manual says exactely.
Installed the packages using composer:
Composer require <package>
I've tried to publish the packages to use:
php artisan vendor:publish
or publish as said in the manuals, but the command gives me output:
Nothing to publish
and public folder doesn't change at all and no folders or files added.
How to integrate these packages into my Laravel 5.2 app in right way?
If possible can some one explain what is the problem and how to get over it and have ability to use it in my blades?
Note: I'm using Windows 10 and XAMP local server,I cant use commands like npm and any thing related to Mac
Step 1: composer require jeroennoten/laravel-adminlte
C:\wamp\blog>composer require jeroennoten/laravel-adminlte
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
Using version ^1.6 for jeroennoten/laravel-adminlte
./composer.json has been updated
> php artisan clear-compiled
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing jeroennoten/laravel-adminlte (v1.6.5)
Downloading: 100%
Writing lock file
Generating autoload files
> php artisan optimize
Generating optimized class loader
Step 2:Add the service provider to the providers in config/app.php:
Step 3:php artisan vendor:publish --provider="JeroenNoten\LaravelAdminLte\ServiceProvider" --tag=assets
C:\wamp\blog>php artisan vendor:publish --provider="JeroenNoten\LaravelAdminLte\ServiceProvider" --tag=assets
Copied Directory [\vendor\jeroennoten\laravel-adminlte\resources\assets] To [\public\vendor\adminlte]
Publishing complete for tag [assets]!

How do I install CakePdf Plugin compatible with Cakephp 2.7.3?

I am working on a Cakephp 2.7.3 application and I need to install CakePdf Plugin.
So far all I've found is the CakePdf version that requires Cakephp 3.0+, including when I try using composer and GitHub.
Am still not an expert in CakePHP. Kindly Assist.
CakePDF release 1.0.3 is compatible with CakePHP 2.x.
To install it, add the following to your /app/composer.json file:
{
"require": {
"friendsofcake/cakepdf": "1.0.3"
}
}
and run
localhost:~/path/to/cake/app$ composer update

InvalidArgumentException error while trying to install CakePHP in WAMP

I am a beginner into CakePHP, I am trying to make a setup of CakePHP environment in my Windows 7 PC. I could successfully install composer, but when i run this command(composer create-project --prefer-dist cakephp/app myapp) to install CakePHP v3.x, I get an error [InvalidArgumentException] Could not find package cakephp with stability stable.
Here is the correct and right Screenshot of the error:
Screenshot1
I am using WAMP server, and my PHP version is 5.3.8
Please help me in fixing the issue.
Thanks in Advance
I only means that you have not installed GIT yet, or forgot to set in PATH environment variable.
I got the same error I did upgrade Wampserver to 2.5 It's working fine.
because it has PHP 5.5.

Resources