rino1
rino1
if you can check what happens if you use parent instead of self keyword (I have not tested)
Where is the new manual? Furthermore ` class ABC { /** * @see ABC::fx() */ function f1() {} /** * @see self::fx() */ function f2() {} function fx() {} }...
``` $ cat composer.json { "repositories": [ { "type": "package", "package": { "dist": { "type": "path", "url": "../depend" } } } ] } $ composer validate In Factory.php line 320:...
> If you want a path install to ../depend I don't want this, where did you read that? Anyway ``` $ cat composer.json { "repositories": [ { "type": "package", "package":...
> The errors are not about the `repositories` entry but about the fact that your `composer.json` file is lacking `name` and `description` keys. You need to either add them or...
but from what you see here https://getcomposer.org/doc/05-repositories.md#package-2 it seems that name and version can be specified also in the root (requester) package. Note 1 ``` "package": { "name": "smarty/smarty", "version":...
OK, but some clarifications should be made on precedence ``` root$ tree -L 2 .. ├── depend │ └── composer.json └── root ├── composer1.json └── composer2.json root$ cat ../depend/composer.json {...
> The type `package` does not expect a `url` key but a `package` key containing all the metadata of the package (i.e. the content of what would be in the...
I know, so couldn't you answer from the other side? https://github.com/composer/composer/discussions/11403#discussioncomment-10982257