-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·35 lines (35 loc) · 901 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
{
"name": "rakshitbharat/pythoninphp",
"description": "This package can give you helper functions to run python files right from PHP.",
"keywords": [
"rakshitbharat",
"pythoninphp"
],
"homepage": "https://github.com/rakshitbharat/pythoninphp",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Rakshit Patel",
"email": "rakshitbharatproject@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Rakshitbharat\\Pythoninphp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rakshitbharat\\Pythoninphp\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}