-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 911 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 911 Bytes
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
{
"name": "solutiondrive/phpspec-standalone",
"description": "Standalone installation of phpspec and some useful additions.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "solutionDrive",
"email": "entwickler@solutiondrive.de"
}
],
"require": {
"php": "^7.4||^8.0",
"composer-plugin-api": "^2.2",
"coduo/php-matcher": "^6.0",
"cweagans/composer-patches": "^1.7",
"friends-of-phpspec/phpspec-expect": "^4.0",
"phpspec/phpspec": "^7.2",
"webmozart/assert": "^1.11"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"phpspec/phpspec": {
"Adjust autoloader for PHAR support": "patches/adjust-autoloader-for-phar-support.patch"
}
}
}
}