-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
38 lines (38 loc) · 949 Bytes
/
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
{
"name": "ayesh/composer-preload",
"description": "Preload your sweet sweet code to opcache with a composer command, making your code faster to run",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Ayesh Karunaratne",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"ayesh/php-timer": "^2.1.1",
"symfony/finder": "^5.0.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5.20",
"composer/composer": "^2.0.13"
},
"autoload": {
"psr-4": {
"Ayesh\\ComposerPreload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ayesh\\ComposerPreload\\Tests\\": "tests/"
}
},
"extra": {
"class": "Ayesh\\ComposerPreload\\Composer\\Plugin"
},
"scripts": {
"test": ["phpunit "]
}
}