forked from FriendsOfPHP/pickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.49 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
{
"name": "khs1994/pickle",
"type": "application",
"description": "Installer for PHP extension, supports pecl package or install from src tree directly",
"homepage": "https://github.com/FriendsOfPHP/pickle",
"license": "PHP-3.01",
"authors": [
{
"name": "Pierre Joye",
"email": "[email protected]",
"homepage": "http://pecl.php.net/user/pajoye",
"role": "Developer"
},
{
"name": "Community",
"homepage": "https://github.com/FriendsOfPHP/pickle/graphs/contributors"
}
],
"require": {
"php": ">=5.4",
"ext-zlib": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-zip": "*",
"symfony/console": "~4.0",
"symfony/finder": "~4.0",
"justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
"composer/composer": "^1.9.1",
"padraic/phar-updater": "~1.0@dev"
},
"require-dev": {
"atoum/atoum": "~2.1",
"atoum/praspel-extension": "~0.1",
"atoum/visibility-extension": "~1.0",
"behat/behat": "~3.0",
"symfony/process": "~4.0"
},
"autoload": {
"psr-4": {
"Pickle\\": ["src/"]
}
},
"bin": ["bin/pickle"],
"scripts": {
"build": "box build",
"fmt": "php-cs-fixer fix"
},
"conflict": {
"friendsofphp/pickle": "*"
}
}