Skip to content

Commit d07060e

Browse files
authored
Improve composer.json (#7)
* Remove PHP7.4 tests * Fix memory limit
1 parent 9d1d550 commit d07060e

File tree

2 files changed

+70
-51
lines changed

2 files changed

+70
-51
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ php:
66
- 7.1
77
- 7.2
88
- 7.3
9-
- 7.4
10-
allow_failures:
11-
- php: 7.4
129

1310
before_install:
11+
- echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
1412
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
1513
- sudo apt-get install --yes nodejs
1614
- npm install -g grunt-cli

composer.json

Lines changed: 69 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,71 @@
11
{
2-
"name" : "cybercog/php-pushwoosh",
3-
"description" : "A PHP Library to easily send push notifications with the Pushwoosh REST Web Services.",
4-
"license" : "MIT",
5-
"type" : "library",
6-
"keywords" : [
7-
"gomoob",
8-
"notification",
9-
"push",
10-
"pushwoosh"
11-
],
12-
"authors" : [{
13-
"name" : "GoMoob",
14-
"email" : "[email protected]",
15-
"homepage" : "http://www.gomoob.com"
16-
}, {
17-
"name" : "Baptiste Gaillard",
18-
"email" : "[email protected]"
19-
}, {
20-
"name" : "Simon Baudry",
21-
"email" : "[email protected]"
22-
}
23-
],
24-
"autoload" : {
25-
"psr-4" : {
26-
"Gomoob\\" : "src/main/php/Gomoob"
27-
}
28-
},
29-
"autoload-dev" : {
30-
"psr-4" : {
31-
"Gomoob\\" : "src/test/php/Gomoob"
32-
}
33-
},
34-
"require" : {
35-
"php" : "^5.6 || ^7.0",
36-
"ext-curl": "*"
37-
},
38-
"require-dev" : {
39-
"codeclimate/php-test-reporter" : "^0.3.2",
40-
"pdepend/pdepend" : "^2.2.4",
41-
"phpdocumentor/phpdocumentor" : "^2.9.0",
42-
"phploc/phploc" : "^3.0.1",
43-
"phpmd/phpmd" : "^2.4.3",
44-
"phpunit/phpunit" : "^5.5.4",
45-
"satooshi/php-coveralls" : "^1.0.1",
46-
"sebastian/phpcpd" : "^2.0.4",
47-
"squizlabs/php_codesniffer" : "^3.0.0RC1",
48-
"symfony/yaml" : "^3.1.4"
49-
}
2+
"name": "cybercog/php-pushwoosh",
3+
"description": "A PHP Library to easily send push notifications with the Pushwoosh REST Web Services.",
4+
"license": "MIT",
5+
"type": "library",
6+
"keywords": [
7+
"cybercog",
8+
"gomoob",
9+
"notification",
10+
"push",
11+
"pushwoosh",
12+
"sdk",
13+
"send",
14+
"mobile",
15+
"rest"
16+
],
17+
"authors": [
18+
{
19+
"name": "Baptiste Gaillard",
20+
"email": "[email protected]",
21+
"role": "Developer"
22+
},
23+
{
24+
"name": "Simon Baudry",
25+
"email": "[email protected]",
26+
"role": "Developer"
27+
},
28+
{
29+
"name": "Daniil Elizarov",
30+
"homepage": "https://github.com/dvpost",
31+
"role": "Developer"
32+
},
33+
{
34+
"name": "Anton Komarev",
35+
"email": "[email protected]",
36+
"homepage": "https://komarev.com",
37+
"role": "Developer"
38+
}
39+
],
40+
"autoload": {
41+
"psr-4": {
42+
"Gomoob\\": "src/main/php/Gomoob"
43+
}
44+
},
45+
"autoload-dev": {
46+
"psr-4": {
47+
"Gomoob\\": "src/test/php/Gomoob"
48+
}
49+
},
50+
"require": {
51+
"php": "^5.6 || ^7.0",
52+
"ext-curl": "*"
53+
},
54+
"require-dev": {
55+
"codeclimate/php-test-reporter": "^0.3.2",
56+
"pdepend/pdepend": "^2.2.4",
57+
"phpdocumentor/phpdocumentor": "^2.9.0",
58+
"phploc/phploc": "^3.0.1",
59+
"phpmd/phpmd": "^2.4.3",
60+
"phpunit/phpunit": "^5.5.4",
61+
"satooshi/php-coveralls": "^1.0.1",
62+
"sebastian/phpcpd": "^2.0.4",
63+
"squizlabs/php_codesniffer": "^3.5",
64+
"symfony/yaml": "^3.1.4"
65+
},
66+
"config": {
67+
"sort-packages": true
68+
},
69+
"minimum-stability": "dev",
70+
"prefer-stable": true
5071
}

0 commit comments

Comments
 (0)