Re: php/laravel qestion
Ashley Sheridan <[email protected]> Wed, 14 Aug 2024 20:05:35 +0100
| Newsgroups | gmane.comp.php.general |
|---|---|
| Message-ID | <[email protected]> |
On 14/08/2024 18:21, bruce wrote: > my god.. > > feel like i'm missing something. > > looking over tutorials/examples.. > > i get create laravel/laravel proj > to create a larvel project "proj" > > but --- >what does "laravel/laravel" mean why the need for this > syntax? is there another "foo/foo" ?? > > I've beem searing.. SO/QUORA/etc all over.. where is the magic site > that lays this out like i'm 5!!! > > wheres my drink.. Hi Bruce, What you're seeing there is the Packagist project name syntax. Packagist is a repository for PHP tools, frameworks, libraries, etc. The first 'laravel' there is the owner of the package space. They have many different packages (think of them like code repositories) available. The second 'laravel' is the name of the project you're installing. So, laravel/laravel means grab the laravel framework package from the laravel group. If you have a look at the list of the other packages they offer at https://packagist.org/packages/laravel/ it should help to clear things up a bit. Ashley Sheridan https://www.ashleysheridan.co.uk