mirror of
https://github.com/composer/composer
synced 2025-05-09 16:42:57 +00:00
Add test verifying only plugin deps are autoloaded (#10374)
This commit is contained in:
parent
71ab70d847
commit
188b692c4c
25 changed files with 1336 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"name": "evil/pkg",
|
||||
"version": "1.0.0",
|
||||
"autoload": {
|
||||
"files": ["exec.php"]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
fwrite(STDERR, "Evil/pkg executed, this should not happen!\n");
|
||||
|
||||
exit(1);
|
Loading…
Add table
Add a link
Reference in a new issue