-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.33 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "classpreloader/console",
"description": "Helps class loading performance by generating a single PHP file containing all of the autoloaded files for a specific use case",
"keywords": ["autoload", "class", "preload", "preloader"],
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com"
},
{
"name": "Graham Campbell",
"email": "hello@gjcampbell.co.uk"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"classpreloader/classpreloader": "^4.3",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/polyfill-ctype": "^1.9"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.1",
"phpunit/phpunit": "^8.5.41 || ^9.6.22",
"graham-campbell/analyzer": "^3.0.7 || ^4.2.1"
},
"autoload": {
"psr-4": {
"ClassPreloader\\Console\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/stubs/"]
},
"bin": ["bin/classpreloader"],
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": false
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}