-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
67 lines (67 loc) · 2.1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "esyede/rakit",
"description": "Rakit Web Framework",
"keywords": [
"rakit",
"framework"
],
"homepage": "https://rakit.esyede.my.id/",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Suyadi",
"email": "suyadi.1992@gmail.com",
"homepage": "https://rakit.esyede.my.id/",
"role": "Project Lead"
}
],
"support": {
"issues": "https://github.com/esyede/rakit/issues?state=open",
"forum": "https://github.com/esyede/rakit/discussions",
"source": "https://github.com/esyede/rakit"
},
"bin": [
"rakit"
],
"require": {
"php": ">=5.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"phpunit/phpunit": "4.8.34"
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"phpunit/phpunit-mock-objects": {
"Fix PHP 7 and 8 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_mock_objects.patch"
},
"phpunit/php-file-iterator": {
"Fix PHP 8.1 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_path_file_iterator.patch"
},
"phpunit/phpunit": {
"Fix PHP 7 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_php7.patch",
"Fix PHP 8 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_php8.patch",
"Fix PHP 8.1 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_php81.patch"
}
}
},
"scripts": {
"post-create-project-cmd": [
"@php rakit key:generate"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}