-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.57 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "infinitumform/php-legacy-compat",
"description": "Universal PHP 8 legacy compatibility layer for migrating PHP 5.x and PHP 7.x applications, including WordPress, Laravel, Symfony, CodeIgniter, Magento, and custom systems.",
"type": "library",
"license": "MIT",
"keywords": [
"php 8 compatibility",
"legacy php support",
"php migration",
"php 8 deprecated functions",
"wordpress php 8",
"laravel legacy",
"symfony legacy",
"codeigniter legacy",
"magento legacy",
"polyfill"
],
"homepage": "https://github.com/InfinitumForm/php-legacy-compat",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/InfinitumForm/php-legacy-compat.git"
},
"support": {
"issues": "https://github.com/InfinitumForm/php-legacy-compat/issues",
"source": "https://github.com/InfinitumForm/php-legacy-compat",
"docs": "https://github.com/InfinitumForm/php-legacy-compat#readme"
},
"authors": [
{
"name": "Ivijan-Stefan Stipic",
"homepage": "https://www.linkedin.com/in/ivijanstefanstipic/",
"role": "Author"
}
],
"require": {
"php": "^8.0"
},
"suggest": {
"ext-gd": "Needed for the image2wbmp compatibility alias when using GD image output functions."
},
"config": {
"sort-packages": true
},
"archive": {
"exclude": [
"/.github",
"/vendor",
"/node_modules"
]
}
}