Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.php > #17579
| From | Simonex <simo@sumo.it> |
|---|---|
| Newsgroups | comp.lang.php |
| Subject | composer: ignore folders |
| Date | 2017-09-12 17:39 +0200 |
| Organization | Aioe.org NNTP Server |
| Message-ID | <op8v3l$ehd$1@gioia.aioe.org> (permalink) |
+ cd /mnt/storage/pending/ignore_paths
+ cat composer.json
{
"name": "root/ignore_paths",
"version": "1.1.1-stable"
}
+ cat .gitattributes
docs/ export-ignore
tests/ export-ignore
+ cd /mnt/test
+ cat composer.json
{
"repositories": [
{
"type": "path",
"url": "/mnt/storage/pending/ignore_paths"
}
]
}
# emptyng...
+ rm -rf vendor
+ composer --prefer-dist require root/ignore_paths
...
+ ls -l vendor/root/ignore_paths/
totale 5
-rwxrwxrwx 1 root root 67 set 8 17:35 composer.json
drwxrwxrwx 1 root root 4096 set 8 17:13 docs
drwxrwxrwx 1 root root 0 set 8 17:13 src
drwxrwxrwx 1 root root 0 set 8 17:13 tests
Because DOCS and TEST not ignored?
Back to comp.lang.php | Previous | Next — Next in thread | Find similar | Unroll thread
composer: ignore folders Simonex <simo@sumo.it> - 2017-09-12 17:39 +0200
Re: composer: ignore folders "J.O. Aho" <user@example.net> - 2017-09-12 19:08 +0200
Re: composer: ignore folders Simonex <simo@sumo.it> - 2017-09-12 19:32 +0200
Re: composer: ignore folders Jerry Stuckle <jstucklex@attglobal.net> - 2017-09-12 21:22 -0400
csiph-web