1
0
Fork 0
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:
Jordi Boggiano 2021-12-20 14:58:55 +01:00 committed by GitHub
parent 71ab70d847
commit 188b692c4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1336 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"name": "evil/pkg",
"version": "1.0.0",
"autoload": {
"files": ["exec.php"]
}
}

View file

@ -0,0 +1,5 @@
<?php
fwrite(STDERR, "Evil/pkg executed, this should not happen!\n");
exit(1);