forked from mirko-pagliai/php-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 965 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
39
40
{
"name": "jeffersonsimaogoncalves/php-tools",
"description": "Some essential tools for PHP",
"homepage": "https://github.com/jeffersonsimaogoncalves/php-tools",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mirko Pagliai",
"email": "mirko.pagliai@gmail.com"
},
{
"name": "Jefferson Simão Gonçalves",
"homepage": "https://github.com/jeffersonsimaogoncalves"
}
],
"require": {
"php": ">=5.6",
"pguardiario/phpuri": "^1",
"symfony/dom-crawler": "^3.4|^4.3",
"symfony/filesystem": "^3.4|^4.3",
"symfony/finder": "^3.4|^4.3",
"psr/http-message": "^1.0"
},
"autoload": {
"psr-4": {
"JeffersonSimaoGoncalves\\Tools\\": "src"
},
"files": [
"src/global_functions.php",
"src/or_fail_functions.php"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"htaccess-protect": true,
"optimize-autoloader": true
}
}